We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c16e98a commit 450295dCopy full SHA for 450295d
docs/unlock-on-merge.md
@@ -25,6 +25,9 @@ permissions:
25
jobs:
26
unlock-on-merge:
27
runs-on: ubuntu-latest
28
+ # Gate this job to only run when the pull request is merged (not closed)
29
+ # https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#running-your-pull_request-workflow-when-a-pull-request-merges
30
+ if: github.event.pull_request.merged == true
31
32
steps:
33
- name: unlock on merge
0 commit comments