File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -11,14 +11,19 @@ jobs:
11
11
# Run only if PR is inside JabRef's main repository and created by dependabot or by an update workflow
12
12
if : >
13
13
(github.repository == 'JabRef/jabref') &&
14
- (github.event.pull_request.head.repo.full_name == 'JabRef/jabref') &&
15
14
(
16
- (github.actor == 'dependabot[ bot]' ) ||
15
+ (github.actor == 'renovate- bot' && startsWith(github.event.pull_request.title, 'chore(deps):') ) ||
17
16
(
18
- startsWith(github.event.pull_request.title, '[Bot] ') ||
19
- startsWith(github.event.pull_request.title, 'Bump ') ||
20
- startsWith(github.event.pull_request.title, 'New Crowdin updates') ||
21
- startsWith(github.event.pull_request.title, 'Update Gradle Wrapper from')
17
+ (github.event.pull_request.head.repo.full_name == 'JabRef/jabref') &&
18
+ (
19
+ (github.actor == 'dependabot[bot]') ||
20
+ (
21
+ startsWith(github.event.pull_request.title, '[Bot] ') ||
22
+ startsWith(github.event.pull_request.title, 'Bump ') ||
23
+ startsWith(github.event.pull_request.title, 'New Crowdin updates') ||
24
+ startsWith(github.event.pull_request.title, 'Update Gradle Wrapper from')
25
+ )
26
+ )
22
27
)
23
28
)
24
29
steps :
You can’t perform that action at this time.
0 commit comments