Skip to content

Commit

Permalink
add release-pr workflow
Browse files Browse the repository at this point in the history
copy pasta from papc
  • Loading branch information
jazzsequence committed Mar 27, 2024
1 parent 1e530b1 commit d68ef8f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Draft Release PR
on:
push:
branches:
- develop

permissions:
pull-requests: write
contents: write

jobs:
draft-release:
name: Draft Release PR
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create Draft Release PR
uses: pantheon-systems/plugin-release-actions/release-pr@main
with:
gh_token: ${{ github.token }}
readme_md: README.md

0 comments on commit d68ef8f

Please sign in to comment.