beta: Beta OpenAPI file replicated from Notehub commit 094554f #43
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 / 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_draft: true |