diff --git a/.github/workflows/create-pr.yml b/.github/workflows/create-pr.yml deleted file mode 100644 index 81bd9620..00000000 --- a/.github/workflows/create-pr.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Pull Request Action -on: - push: - branches: - - feat/bot-* -jobs: - create-pull-request: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3 - - - name: pull-request - run: | - gh pr edit ${{ github.ref_name }} --title '${{ github.event.head_commit.message }}' --body '' && - gh pr reopen ${{ github.ref_name }} || - gh pr create --base master --title '${{ github.event.head_commit.message }}' --body '' - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}