From 3676b4cac6707c7715f240e406f3720b69c76ce3 Mon Sep 17 00:00:00 2001 From: mhostetter Date: Sun, 13 Nov 2022 12:12:46 -0500 Subject: [PATCH] Remove `fast-forward-pr` GitHub Action --- .github/workflows/fast-forward-pr.yaml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/fast-forward-pr.yaml diff --git a/.github/workflows/fast-forward-pr.yaml b/.github/workflows/fast-forward-pr.yaml deleted file mode 100644 index 6dfca8f57..000000000 --- a/.github/workflows/fast-forward-pr.yaml +++ /dev/null @@ -1,24 +0,0 @@ -name: Fast-Forward PR - -on: - issue_comment: - types: [created] - -jobs: - fast-forward: - name: Fast forward - if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/fast-forward') - runs-on: ubuntu-latest - steps: - # To use this repository's private action, you must check out the repository - - name: Checkout code into workspace directory - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - name: Fast Forward PR - uses: endre-spotlab/fast-forward-js-action@2.1 - with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - success_message: 'Success! Fast forwarded ***target_base*** to ***source_head***! ```git checkout target_base && git merge source_head --ff-only``` ' - failure_message: 'Failed! Cannot do fast forward!'