diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-04-08 13:14:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-08 13:14:13 +0200 |
commit | 5d01d2338943ef535fdb40c9639269208e720d74 (patch) | |
tree | 4a7fcfeeb1c110f41961e8f88963d3ad07df8520 | |
parent | 95fe166d13fe51d1656c659dbb78b258a6f5dcd8 (diff) | |
download | rneovim-5d01d2338943ef535fdb40c9639269208e720d74.tar.gz rneovim-5d01d2338943ef535fdb40c9639269208e720d74.tar.bz2 rneovim-5d01d2338943ef535fdb40c9639269208e720d74.zip |
ci: simplify backport workflow
-rw-r--r-- | .github/workflows/backport.yml | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml index 414fe1f1d6..020cbd51bd 100644 --- a/.github/workflows/backport.yml +++ b/.github/workflows/backport.yml @@ -8,15 +8,9 @@ jobs: contents: write pull-requests: write name: Backport Pull Request - if: > - github.repository_owner == 'neovim' && ( - github.event_name == 'pull_request_target' && - github.event.pull_request.merged - ) + if: github.event.pull_request.merged runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - with: - ref: ${{ github.event.pull_request.head.sha }} - name: Create backport PRs uses: korthout/backport-action@v1 |