Skip to content

Commit

Permalink
ci: add create-release-candidate.yml (#864)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zidious authored Oct 12, 2023
1 parent 22b3a9d commit f4ef4a5
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/create-release-candidate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Create release candidate

on:
workflow_dispatch:
inputs:
version-locked:
type: boolean
description: Prevent this action from creating a minor or major release
default: true

jobs:
create-release-candidate:
runs-on: ubuntu-latest
steps:
- uses: dequelabs/axe-api-team-public/.github/actions/create-release-candidate-v1@main
with:
token: ${{ secrets.GH_PROJECT_TOKEN }}
base: 'master'
head: 'develop'
release-script-path: './.github/scripts/prepare_release.sh'
version-locked: ${{ inputs.version-locked }}
env:
GH_TOKEN: ${{ secrets.GH_PROJECT_TOKEN }}

0 comments on commit f4ef4a5

Please sign in to comment.