diff options
author | dundargoc <gocdundar@gmail.com> | 2024-09-13 16:50:08 +0200 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-09-14 01:55:36 +0200 |
commit | 67d6b6f27ed3016a2daf6037879d77becc2cfa8f (patch) | |
tree | e6b28019bb242f6b0485327b6ee6b7f78caefee3 | |
parent | 8512f669f0e095df99e0456db11a0e0b5a2b0485 (diff) | |
download | rneovim-67d6b6f27ed3016a2daf6037879d77becc2cfa8f.tar.gz rneovim-67d6b6f27ed3016a2daf6037879d77becc2cfa8f.tar.bz2 rneovim-67d6b6f27ed3016a2daf6037879d77becc2cfa8f.zip |
ci: skip automerge step if backport failed
-rw-r--r-- | .github/workflows/backport.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml index 9c80cd85e1..25a52c4757 100644 --- a/.github/workflows/backport.yml +++ b/.github/workflows/backport.yml @@ -40,6 +40,7 @@ jobs: }) - name: Enable automerge + if: ${{ steps.backport.outputs.was_successful == 'true' }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: gh pr merge --rebase --auto ${{ steps.backport.outputs.created_pull_numbers }} |