File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ jobs:
10
10
runs-on : ubuntu-latest
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
- (github.repository == 'JabRef/jabref') &&
13
+ (github.repository == 'JabRef/jabref') &&
14
14
(github.event.pull_request.head.repo.full_name == 'JabRef/jabref') &&
15
15
(
16
16
(github.actor == 'dependabot[bot]') ||
17
17
(
18
- startsWith(github.event.pull_request.title, '[Bot] ') ||
19
- startsWith(github.event.pull_request.title, 'Bump ') ||
18
+ startsWith(github.event.pull_request.title, '[Bot] ') ||
19
+ startsWith(github.event.pull_request.title, 'Bump ') ||
20
20
startsWith(github.event.pull_request.title, 'New Crowdin updates') ||
21
21
startsWith(github.event.pull_request.title, 'Update Gradle Wrapper from')
22
22
)
26
26
run : gh pr review --approve "$PR_URL"
27
27
env :
28
28
PR_URL : ${{github.event.pull_request.html_url}}
29
- GITHUB_TOKEN : ${{secrets.GH_TOKEN_JABREF_MACHINE_PR_APPROVE}}
29
+ GH_TOKEN : ${{secrets.GH_TOKEN_JABREF_MACHINE_PR_APPROVE}}
30
30
- name : Merge PR
31
31
run : gh pr merge --auto --squash "$PR_URL"
32
32
env :
33
33
PR_URL : ${{github.event.pull_request.html_url}}
34
- GITHUB_TOKEN : ${{secrets.GH_TOKEN_UPDATE_GRADLE_WRAPPER}}
34
+ GH_TOKEN : ${{secrets.GH_TOKEN_UPDATE_GRADLE_WRAPPER}}
Original file line number Diff line number Diff line change 14
14
gh pr edit "$PR_URL" --add-label "status: changes required"
15
15
env:
16
16
PR_URL: ${{github.event.pull_request.html_url}}
17
- GITHUB_TOKEN : ${{secrets.GH_TOKEN_UPDATE_GRADLE_WRAPPER}}
17
+ GH_TOKEN : ${{secrets.GH_TOKEN_UPDATE_GRADLE_WRAPPER}}
You can’t perform that action at this time.
0 commit comments