We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 304c9d0 commit c0d3a86Copy full SHA for c0d3a86
.github/workflows/process-closed-prs.yml
@@ -30,9 +30,9 @@ jobs:
30
GH_REPO: ${{ github.repository }}
31
32
- run: |
33
- gh pr edit ${{ inputs.pr_number != '' && inputs.pr_number || github.event.pull_request.number }} \
+ gh pr edit ${{ github.event.pull_request.number }} \
34
--remove-milestone
35
- if: github.event.pull_request.merged != true
+ if: ${{ ! github.event.pull_request.merged && ! inputs.pr_number != ''}}
36
env:
37
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38
- GH_REPO: ${{ github.repository }}
+ GH_REPO: ${{ github.repository }}
0 commit comments