23
23
24
24
check_title_format :
25
25
name : PR title must not start with "Fix for issue <number>"
26
- if : github.actor != 'dependabot[bot]'
26
+ if : github.actor != 'dependabot[bot]' && github.event.pull_request.head.repo.full_name != 'JabRef/jabref'
27
27
runs-on : ubuntu-latest
28
28
steps :
29
29
- name : Checkout source
47
47
48
48
mandatory-checks-section-exists :
49
49
if : >
50
- (github.repository_owner != 'JabRef') && !(
50
+ (github.event.pull_request.head.repo.full_name != 'JabRef/jabref ') && !(
51
51
(github.actor == 'dependabot[bot]') ||
52
52
(
53
53
startsWith(github.event.pull_request.title, '[Bot] ') ||
83
83
84
84
checklist-checked :
85
85
if : >
86
- (github.repository_owner != 'JabRef') &&
86
+ (github.event.pull_request.head.repo.full_name != 'JabRef/jabref ') &&
87
87
!(
88
88
(github.actor == 'dependabot[bot]') ||
89
89
(
@@ -139,7 +139,7 @@ jobs:
139
139
140
140
changelog_modified :
141
141
name : CHANGELOG.md needs to be modified
142
- if : ( github.actor != 'dependabot[bot]') && ( github.repository_owner != 'JabRef')
142
+ if : github.actor != 'dependabot[bot]' && github.event.pull_request.head.repo.full_name != 'JabRef/jabref'
143
143
runs-on : ubuntu-latest
144
144
steps :
145
145
- uses : actions/checkout@v4
@@ -175,7 +175,7 @@ jobs:
175
175
# This ensures that no git merge conflict markers (<<<, ...) are contained
176
176
merge_conflict_job :
177
177
name : Find merge conflicts
178
- if : ( github.actor != 'dependabot[bot]') && ( github.repository_owner != 'JabRef')
178
+ if : github.actor != 'dependabot[bot]' && github.event.pull_request.head.repo.full_name != 'JabRef/jabref'
179
179
runs-on : ubuntu-latest
180
180
steps :
181
181
- uses : actions/checkout@v4
@@ -185,7 +185,7 @@ jobs:
185
185
uses : olivernybroe/action-conflict-finder@v4.1
186
186
187
187
no-force-push :
188
- if : ( github.actor != 'dependabot[bot]') && ( github.repository_owner != 'JabRef')
188
+ if : github.actor != 'dependabot[bot]' && github.event.pull_request.head.repo.full_name != 'JabRef/jabref'
189
189
runs-on : ubuntu-latest
190
190
steps :
191
191
- name : Checkout repository
@@ -209,7 +209,7 @@ jobs:
209
209
210
210
unmodified_submodules :
211
211
name : Submodules not modified
212
- if : ( github.actor != 'dependabot[bot]') && ( github.repository_owner != 'JabRef')
212
+ if : github.actor != 'dependabot[bot]' && github.event.pull_request.head.repo.full_name != 'JabRef/jabref'
213
213
runs-on : ubuntu-latest
214
214
steps :
215
215
# No checkout -> the action uses GitHub's API (which is more reliable for submodule changes due to our submodule settings)
@@ -229,7 +229,7 @@ jobs:
229
229
230
230
other_than_main :
231
231
name : Source branch is other than "main"
232
- if : ( github.actor != 'dependabot[bot]') && ( github.repository_owner != 'JabRef')
232
+ if : github.actor != 'dependabot[bot]' && github.event.pull_request.head.repo.full_name != 'JabRef/jabref'
233
233
runs-on : ubuntu-latest
234
234
steps :
235
235
- if : github.head_ref == 'main'
0 commit comments