From b854340c21ead9c17710546522af0a030584a8a7 Mon Sep 17 00:00:00 2001 From: kmlbgn Date: Sat, 31 Aug 2024 13:20:08 +0800 Subject: [PATCH] new workflow --- .github/workflows/main.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..116746f --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,22 @@ +name: Auto Create Pull Request + +on: + push: + branches: + - dev-webflow + +jobs: + create-pull-request: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Create Pull Request + uses: peter-evans/create-pull-request@v5 + with: + token: ${{ secrets.GITHUB_TOKEN }} + base: master + head: dev-webflow + title: "Merge dev-webflow into master" + body: "This PR is automatically created to merge changes from dev-webflow into master." \ No newline at end of file