Skip to content

Commit

Permalink
increase github action timeouts (#5245)
Browse files Browse the repository at this point in the history
Co-authored-by: Markus Staab <47448731+clxmstaab@users.noreply.github.com>
  • Loading branch information
staabm and clxmstaab committed Jul 18, 2022
1 parent acf47c4 commit ed18f48
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/chatops.yml
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
slash-command-dispatch:
runs-on: ubuntu-latest
timeout-minutes: 5
timeout-minutes: 30

steps:
- name: Slash Command Dispatch
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/code-style.yml
Expand Up @@ -15,7 +15,7 @@ permissions:
jobs:
php-cs-fixer:
runs-on: ubuntu-latest
timeout-minutes: 5
timeout-minutes: 30
if: github.event.pull_request.draft == false
permissions:
contents: write # for stefanzweifel/git-auto-commit-action to push code in repo
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
permissions:
contents: write # for stefanzweifel/git-auto-commit-action to push code in repo
runs-on: ubuntu-latest
timeout-minutes: 5
timeout-minutes: 30
if: github.event.pull_request.draft == false

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/remove-automerge-label.yml
Expand Up @@ -10,7 +10,7 @@ permissions:
jobs:
remove-automerge-label:
runs-on: ubuntu-latest
timeout-minutes: 5
timeout-minutes: 30
if: github.event.pull_request.merged == true
permissions:
contents: none
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rexlint.yml
Expand Up @@ -12,7 +12,7 @@ permissions:
jobs:
rexlint:
runs-on: ubuntu-18.04
timeout-minutes: 5
timeout-minutes: 30
if: github.event.pull_request.draft == false

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sarif-report.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
psalm-taint-sarif-report:
name: psalm taint sarif report
runs-on: ubuntu-latest
timeout-minutes: 5
timeout-minutes: 30
permissions:
contents: read # for actions/checkout to fetch code
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/static-analysis.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
psalm-analysis:
name: psalm static code analysis
runs-on: ubuntu-latest
timeout-minutes: 5
timeout-minutes: 30
permissions:
contents: write # for stefanzweifel/git-auto-commit-action to push code in repo

Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
psalm-taint-analysis:
name: psalm taint analysis
runs-on: ubuntu-latest
timeout-minutes: 5
timeout-minutes: 30
if: github.event.pull_request.draft == false
permissions:
contents: write # for stefanzweifel/git-auto-commit-action to push code in repo
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
phpstan-analysis:
name: phpstan static code analysis
runs-on: ubuntu-latest
timeout-minutes: 5
timeout-minutes: 30
permissions:
contents: write # for Git to git apply

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/styles-compile.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
compile:
name: be_style:compile
runs-on: ubuntu-latest
timeout-minutes: 5
timeout-minutes: 30
permissions:
contents: write # for Git to git apply

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Expand Up @@ -12,7 +12,7 @@ permissions:
jobs:
phpunit:
runs-on: ${{ matrix.os }}
timeout-minutes: 5
timeout-minutes: 30
permissions:
contents: write # for Git to git apply

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/visual-tests.yml
Expand Up @@ -17,7 +17,7 @@ permissions:
jobs:
visual-tests:
runs-on: ubuntu-latest
timeout-minutes: 5
timeout-minutes: 30
permissions:
contents: write # for Git to git apply

Expand Down

0 comments on commit ed18f48

Please sign in to comment.