diff --git a/.github/workflows/auto-pr.yaml b/.github/workflows/auto-pr.yaml new file mode 100644 index 00000000..1128cbfc --- /dev/null +++ b/.github/workflows/auto-pr.yaml @@ -0,0 +1,18 @@ +name: Pull Request on Branch Push +on: + push: + branches-ignore: + - main +jobs: + auto-pull-request: + name: Open pull request on new branch + runs-on: ubuntu-latest + steps: + - name: pull-request-action + uses: vsoch/pull-request-action@master + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + BRANCH_PREFIX: 'feat/update-client' + PULL_REQUEST_BRANCH: 'main' + PULL_REQUEST_UPDATE: true + PASS_IF_EXISTS: true