File tree 1 file changed +8
-0
lines changed 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 3
3
schedule :
4
4
# Run every Thursday right before midnight
5
5
- cron : ' 59 23 * * 4'
6
+ workflow_dispatch :
6
7
jobs :
7
8
create_patch_release :
8
9
name : Create release
9
10
runs-on : ubuntu-latest
10
11
steps :
12
+ - name : Determine if we skip cancel checks
13
+ id : skip-checks
14
+ shell : bash
15
+ # Skip checks if we are not a scheduled run
16
+ run : echo value=$(test ${{ github.event_name }} != schedule && echo true || echo false) >> "$GITHUB_OUTPUT"
17
+
11
18
- name : Create release
12
19
uses : dequelabs/axe-api-team-public/.github/actions/auto-patch-release-v1@main
13
20
with :
14
21
token : ${{ secrets.GITHUB_TOKEN }}
15
22
project_token : ${{ secrets.GH_PROJECT_TOKEN }}
23
+ skip_checks : ${{ steps.skip-checks.outputs.value }}
16
24
slack_webhook : ${{ secrets.SLACK_WEBHOOK }}
17
25
odd_release : ' true'
18
26
release-command : bash .github/scripts/prepare_release.sh
You can’t perform that action at this time.
0 commit comments