From ca84f9418ec59474e1c7ecf2120fdb080839d363 Mon Sep 17 00:00:00 2001 From: Woosang Son Date: Tue, 26 Oct 2021 11:01:33 +0900 Subject: [PATCH] ci: add an action creating pr (#29) --- .github/workflows/autopr.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/autopr.yml diff --git a/.github/workflows/autopr.yml b/.github/workflows/autopr.yml new file mode 100644 index 0000000..d2b7cd9 --- /dev/null +++ b/.github/workflows/autopr.yml @@ -0,0 +1,20 @@ +name: Pull Request Action +on: + push: + branches: + - release/* + +jobs: + create-pull-request: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v2 + + - name: pull-request + uses: repo-sync/pull-request@v2 + with: + destination_branch: "main" + github_token: ${{ secrets.GITHUB_TOKEN }} + pr_label: "release branch updated, automated pr" + pr_title: "fix: apply fix from release branch"