diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 03e8e03..33cf56e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -11,3 +11,12 @@ updates: commit-message: # Prefix all commit messages with "chore: " prefix: "chore" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + day: "wednesday" + time: "09:00" + commit-message: + # Prefix all commit messages with "chore: " + prefix: "chore" diff --git a/.github/workflows/deploy_dev.yml b/.github/workflows/deploy_dev.yml index d1819d4..d3fa269 100644 --- a/.github/workflows/deploy_dev.yml +++ b/.github/workflows/deploy_dev.yml @@ -6,7 +6,7 @@ on: jobs: gitlab-dev-deploy: if: ${{ github.event.registry_package.package_version.container_metadata.tag.name == 'development' }} - uses: epam/ai-dial-ci/.github/workflows/deploy-development.yml@1.3.1 + uses: epam/ai-dial-ci/.github/workflows/deploy-development.yml@1.7.0 with: gitlab-project-id: "1829" gitlab-project-ref: "master" diff --git a/.github/workflows/pr-title-check.yml b/.github/workflows/pr-title-check.yml index 8aef1e8..495a191 100644 --- a/.github/workflows/pr-title-check.yml +++ b/.github/workflows/pr-title-check.yml @@ -9,6 +9,6 @@ on: jobs: pr-title-check: - uses: epam/ai-dial-ci/.github/workflows/pr-title-check.yml@1.3.1 + uses: epam/ai-dial-ci/.github/workflows/pr-title-check.yml@1.7.0 secrets: ACTIONS_BOT_TOKEN: ${{ secrets.ACTIONS_BOT_TOKEN }} diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml new file mode 100644 index 0000000..2692edb --- /dev/null +++ b/.github/workflows/pr.yml @@ -0,0 +1,10 @@ +name: PR Workflow + +on: + pull_request: + branches: [development, release-*] + +jobs: + run_tests: + uses: epam/ai-dial-ci/.github/workflows/python_docker_pr.yml@1.7.0 + secrets: inherit diff --git a/.github/workflows/pr_check_tests.yml b/.github/workflows/pr_check_tests.yml deleted file mode 100644 index af9a254..0000000 --- a/.github/workflows/pr_check_tests.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: Code checks - tests - -on: - pull_request: - branches: - - development - - release-* - -jobs: - run_tests: - uses: epam/ai-dial-ci/.github/workflows/test_python_docker.yml@1.3.1 - with: - bypass_checks: false - python_version: 3.11 - secrets: inherit diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 586f5c9..96625d2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,13 +1,10 @@ -name: Release version +name: Release Workflow on: push: branches: [development, release-*] -env: - IMAGE_NAME: ${{ github.repository }} - jobs: release: - uses: epam/ai-dial-ci/.github/workflows/publish_python_docker.yml@1.3.1 + uses: epam/ai-dial-ci/.github/workflows/python_docker_release.yml@1.7.0 secrets: inherit