diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..17a507d --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,7 @@ +# Problem Context + +## Changes + +## Testing + +Automated tests pass? diff --git a/.github/workflows/open-pr.yml b/.github/workflows/open-pr.yml new file mode 100644 index 0000000..6dbdf81 --- /dev/null +++ b/.github/workflows/open-pr.yml @@ -0,0 +1,22 @@ +name: Automatically create / update pull request + +# run this workflow only on feat-openapi-update branch +on: + push: + branches: + - "feat-openapi-update" + +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: "feat: PLACEHOLDER TITLE" + pr_template: ".github/PULL_REQUEST_TEMPLATE.md" + pr_reviewer: "Bucknalla" + pr_draft: true