We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d3978e commit fb85871Copy full SHA for fb85871
.github/workflows/on-pr-opened-updated.yml
@@ -161,12 +161,16 @@ jobs:
161
env:
162
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
163
remove_label:
164
- if: github.repository == 'JabRef/jabref'
+ if: >
165
+ (github.repository == 'JabRef/jabref') &&
166
+ (github.event.pull_request.head.repo.full_name == 'JabRef/jabref')
167
name: 'Remove label "status: changes-required"'
168
runs-on: ubuntu-latest
169
steps:
170
- run: |
171
gh issue --repo ${{ github.repository }} edit ${{ github.event.pull_request.number }} --remove-label "status: changes-required"
172
+ env:
173
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
174
upload-pr-number:
175
if: github.repository == 'JabRef/jabref'
176
0 commit comments