From 78eb4893112f94754e233e9f4833ad2df0c67d25 Mon Sep 17 00:00:00 2001 From: Alex Bucknall Date: Fri, 13 Feb 2026 14:13:11 +0000 Subject: [PATCH] feat: Add pull request template and automation workflow --- .github/PULL_REQUEST_TEMPLATE.md | 7 +++++++ .github/workflows/open-pr.yml | 22 ++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md create mode 100644 .github/workflows/open-pr.yml 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