ci: enable manual running of release #32
Workflow file for this run
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
name: Automatically create patch release every 2 weeks | |
on: | |
schedule: | |
# Run every Thursday right before midnight | |
- cron: '59 23 * * 4' | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
create_patch_release: | |
name: Create release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Determine if we skip cancel checks | |
id: skip-checks | |
shell: bash | |
# Skip checks if we are not a scheduled run | |
run: echo value=$(test ${{ github.event_name }} != schedule && echo true || echo false) >> "$GITHUB_OUTPUT" | |
- name: Create release | |
uses: dequelabs/axe-api-team-public/.github/actions/auto-patch-release-v1@main | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
project_token: ${{ secrets.GH_PROJECT_TOKEN }} | |
skip_checks: ${{ steps.skip-checks.outputs.value }} | |
slack_webhook: ${{ secrets.SLACK_WEBHOOK }} | |
odd_release: 'true' | |
release-command: bash .github/scripts/prepare_release.sh | |
release-branch: master | |
default-branch: ci-patch-thrusday |