mirror of
https://github.com/ansible/awx.git
synced 2026-06-24 08:07:47 -02:30
Update CI schedule to 11/17 UTC and add stable-2.7 dispatch (#16507)
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
12
.github/workflows/ci.yml
vendored
12
.github/workflows/ci.yml
vendored
@@ -12,7 +12,7 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- devel # needed to publish code coverage post-merge
|
- devel # needed to publish code coverage post-merge
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 12,18 * * 1-5'
|
- cron: '0 11,17 * * 1-5'
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
jobs:
|
jobs:
|
||||||
trigger-release-branches:
|
trigger-release-branches:
|
||||||
@@ -36,12 +36,20 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
GH_REPO: ${{ github.repository }}
|
GH_REPO: ${{ github.repository }}
|
||||||
|
- name: Trigger CI on stable-2.7
|
||||||
|
id: dispatch_stable_27
|
||||||
|
continue-on-error: true
|
||||||
|
run: gh workflow run ci.yml --ref stable-2.7
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
GH_REPO: ${{ github.repository }}
|
||||||
- name: Check dispatch results
|
- name: Check dispatch results
|
||||||
if: steps.dispatch_release_46.outcome == 'failure' || steps.dispatch_stable_26.outcome == 'failure'
|
if: steps.dispatch_release_46.outcome == 'failure' || steps.dispatch_stable_26.outcome == 'failure' || steps.dispatch_stable_27.outcome == 'failure'
|
||||||
run: |
|
run: |
|
||||||
echo "One or more dispatches failed:"
|
echo "One or more dispatches failed:"
|
||||||
echo " release_4.6: ${{ steps.dispatch_release_46.outcome }}"
|
echo " release_4.6: ${{ steps.dispatch_release_46.outcome }}"
|
||||||
echo " stable-2.6: ${{ steps.dispatch_stable_26.outcome }}"
|
echo " stable-2.6: ${{ steps.dispatch_stable_26.outcome }}"
|
||||||
|
echo " stable-2.7: ${{ steps.dispatch_stable_27.outcome }}"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
||||||
common-tests:
|
common-tests:
|
||||||
|
|||||||
Reference in New Issue
Block a user