-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Aleksandr Chikovani
committed
Sep 19, 2023
1 parent
a04f6e5
commit 6c5ef48
Showing
4 changed files
with
42 additions
and
205 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"LABEL": { | ||
"name": "", | ||
"color": "EEEEEE" | ||
}, | ||
"CHECKS": { | ||
"prefixes": ["fix: ", "feat: ", "feature: ", "chore: ", "hotfix: "] | ||
}, | ||
"MESSAGES": { | ||
"success": "All OK", | ||
"failure": "Missing prefix", | ||
"notice": "" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Code checks - tests | ||
|
||
on: | ||
push: | ||
branches: [ development, release-* ] #TODO: drop once debug finished | ||
pull_request: | ||
branches: | ||
- development | ||
- release-* | ||
|
||
jobs: | ||
run_tests: | ||
uses: epam/ai-dial-ci/.github/workflows/test_python_docker.yml@feat/test-ci | ||
with: | ||
bypass_checks: false | ||
python_version: 3.11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Release version | ||
|
||
on: | ||
push: | ||
branches: [ development, release-* ] | ||
|
||
env: | ||
IMAGE_NAME: ${{ github.repository }} | ||
|
||
jobs: | ||
release: | ||
uses: epam/ai-dial-ci/.github/workflows/publish_docker.yml@feat/test-ci |
This file was deleted.
Oops, something went wrong.