Skip to content

Commit

Permalink
ci: add kickoff release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
5d authored and Di Wu committed Aug 22, 2023
1 parent c7ec93d commit 4833938
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/kickoff-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Kickoff release

on: [workflow_dispatch]

permissions:
pull-requests: write

jobs:
prepare-release:
name: Prepare release
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
- name: Create PR to push main to release branch
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: "gh pr create --title 'chore: kickoff release' --body 'kickoff release' --head main --base release"

0 comments on commit 4833938

Please sign in to comment.