Changeset 50763
- Timestamp:
- 04/16/2021 05:24:47 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/test-old-branches.yml
r50648 r50763 2 2 3 3 on: 4 # Once weekly On Mondays at 00:00 UTC. 4 # Verify the workflow is successful when this file is updated. 5 push: 6 branches: 7 - master 8 - trunk 9 paths: 10 - '.github/workflows/test-old-branches.yml' 11 # Run twice a month on the 1st and 15th at 00:00 UTC. 5 12 schedule: 6 - cron: '0 0 1,15 * *' 13 - cron: '0 0 1 * *' 14 - cron: '0 0 15 * *' 7 15 8 16 jobs: … … 46 54 workflow: 'javascript-tests.yml' 47 55 56 # Run all branches monthly, but only the currently supported one twice per month. 48 57 steps: 49 58 - name: Dispatch workflow run 50 59 uses: actions/github-script@47f7cf65b5ced0830a325f705cad64f2f58dddf7 # v3.1.0 60 if: ${{ github.event_name == 'push' || github.event.schedule == '0 0 15 * *' || matrix.branch == '5.7' }} 51 61 with: 52 62 github-token: ${{ secrets.GHA_OLD_BRANCH_DISPATCH }}
Note: See TracChangeset
for help on using the changeset viewer.