From 5ed6a57df26837e009f406fbd1cd44c29fdaa2da Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Mon, 26 Dec 2022 19:10:57 +0100 Subject: [PATCH] ci: open pull requests to merge `dev` to `main` --- .github/workflows/pull_request.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/pull_request.yml diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml new file mode 100644 index 00000000..d5d04376 --- /dev/null +++ b/.github/workflows/pull_request.yml @@ -0,0 +1,24 @@ +name: PR to main + +on: + push: + branches: + - dev + workflow_dispatch: + +env: + MESSAGE: merge branch \`${{ github.head_ref || github.ref_name }}\` to \`main\` + +jobs: + pull-request: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Open pull request + uses: repo-sync/pull-request@v2 + with: + destination_branch: 'main' + pr_title: 'chore: ${{ env.MESSAGE }}' + pr_body: 'This pull request will ${{ env.MESSAGE }}.' + pr_draft: true \ No newline at end of file