Skip to content

Commit

Permalink
add beta PR workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
paigen11 committed Oct 1, 2024
1 parent 5df91d0 commit d2d430d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/create-beta-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Automatically create / update beta pull request

# run this workflow only on new beta testing feature branches
on:
push:
branches:
- "test-release-*"

jobs:
create_pr_repo_sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Create pull request
id: open-pr
uses: repo-sync/pull-request@v2
with:
destination_branch: "main"
pr_title: "beta: PLACEHOLDER TITLE"
pr_template: ".github/PULL_REQUEST_TEMPLATE.md"
pr_draft: true

0 comments on commit d2d430d

Please sign in to comment.