File tree Expand file tree Collapse file tree 5 files changed +8
-3
lines changed Expand file tree Collapse file tree 5 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -8,22 +8,23 @@ permissions:
8
8
jobs :
9
9
dependabot :
10
10
runs-on : ubuntu-latest
11
+ timeout-minutes : 5
11
12
if : ${{ github.actor == 'dependabot[bot]' }}
12
13
steps :
13
-
14
+
14
15
- name : Dependabot metadata
15
16
id : metadata
16
17
uses :
dependabot/[email protected]
17
18
with :
18
19
github-token : " ${{ secrets.GITHUB_TOKEN }}"
19
-
20
+
20
21
- name : Auto-merge Dependabot PRs for semver-minor updates
21
22
if : ${{steps.metadata.outputs.update-type == 'version-update:semver-minor'}}
22
23
run : gh pr merge --auto --merge "$PR_URL"
23
24
env :
24
25
PR_URL : ${{github.event.pull_request.html_url}}
25
26
GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
26
-
27
+
27
28
- name : Auto-merge Dependabot PRs for semver-patch updates
28
29
if : ${{steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
29
30
run : gh pr merge --auto --merge "$PR_URL"
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ permissions:
11
11
jobs :
12
12
php-code-styling :
13
13
runs-on : ubuntu-latest
14
+ timeout-minutes : 5
14
15
15
16
steps :
16
17
- name : Checkout code
Original file line number Diff line number Diff line change 10
10
phpstan :
11
11
name : phpstan
12
12
runs-on : ubuntu-latest
13
+ timeout-minutes : 5
13
14
steps :
14
15
- uses : actions/checkout@v4
15
16
Original file line number Diff line number Diff line change 9
9
jobs :
10
10
test :
11
11
runs-on : ${{ matrix.os }}
12
+ timeout-minutes : 5
12
13
strategy :
13
14
fail-fast : true
14
15
matrix :
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ permissions:
10
10
jobs :
11
11
update :
12
12
runs-on : ubuntu-latest
13
+ timeout-minutes : 5
13
14
14
15
steps :
15
16
- name : Checkout code
You can’t perform that action at this time.
0 commit comments