mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-25 07:31:05 -05:00
Add CI timeout (#2127)
This commit is contained in:
parent
474495d9f1
commit
60ccdfca87
11 changed files with 14 additions and 0 deletions
1
.github/workflows/deploy-DEV-slim.yml
vendored
1
.github/workflows/deploy-DEV-slim.yml
vendored
|
@ -32,6 +32,7 @@ jobs:
|
|||
# Prevent duplicate run from happening when a forked push is committed
|
||||
if: ${{ github.event_name == 'push' ||
|
||||
github.event.pull_request.head.repo.full_name != github.repository }}
|
||||
timeout-minutes: 60
|
||||
##################
|
||||
# Load all steps #
|
||||
##################
|
||||
|
|
1
.github/workflows/deploy-DEV-standard.yml
vendored
1
.github/workflows/deploy-DEV-standard.yml
vendored
|
@ -32,6 +32,7 @@ jobs:
|
|||
# Prevent duplicate run from happening when a forked push is committed
|
||||
if: ${{ github.event_name == 'push' ||
|
||||
github.event.pull_request.head.repo.full_name != github.repository }}
|
||||
timeout-minutes: 60
|
||||
##################
|
||||
# Load all steps #
|
||||
##################
|
||||
|
|
1
.github/workflows/deploy-PROD-slim.yml
vendored
1
.github/workflows/deploy-PROD-slim.yml
vendored
|
@ -29,6 +29,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
# Only run this on the main repo
|
||||
if: ${{ github.repository == 'github/super-linter' }}
|
||||
timeout-minutes: 60
|
||||
##################
|
||||
# Load all steps #
|
||||
##################
|
||||
|
|
1
.github/workflows/deploy-PROD-standard.yml
vendored
1
.github/workflows/deploy-PROD-standard.yml
vendored
|
@ -29,6 +29,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
# Only run this on the main repo
|
||||
if: ${{ github.repository == 'github/super-linter' }}
|
||||
timeout-minutes: 60
|
||||
##################
|
||||
# Load all steps #
|
||||
##################
|
||||
|
|
2
.github/workflows/deploy-RELEASE-slim.yml
vendored
2
.github/workflows/deploy-RELEASE-slim.yml
vendored
|
@ -36,6 +36,8 @@ jobs:
|
|||
github.actor == 'Hanse00' || github.actor == 'github-actions' ||
|
||||
github.actor == 'GaboFDC' || github.actor == 'ferrarimarco' }}
|
||||
|
||||
timeout-minutes: 60
|
||||
|
||||
##################
|
||||
# Load all steps #
|
||||
##################
|
||||
|
|
|
@ -36,6 +36,8 @@ jobs:
|
|||
github.actor == 'Hanse00' || github.actor == 'github-actions' ||
|
||||
github.actor == 'GaboFDC' || github.actor == 'ferrarimarco' }}
|
||||
|
||||
timeout-minutes: 60
|
||||
|
||||
##################
|
||||
# Load all steps #
|
||||
##################
|
||||
|
|
1
.github/workflows/draft-release.yml
vendored
1
.github/workflows/draft-release.yml
vendored
|
@ -21,6 +21,7 @@ on:
|
|||
jobs:
|
||||
update_release_draft:
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 60
|
||||
steps:
|
||||
# Drafts your next Release notes as Pull Requests are merged into "master"
|
||||
- uses: release-drafter/release-drafter@v5
|
||||
|
|
1
.github/workflows/stack-linter.yml
vendored
1
.github/workflows/stack-linter.yml
vendored
|
@ -28,6 +28,7 @@ jobs:
|
|||
name: Stack linter
|
||||
# Set the agent to run on
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 60
|
||||
##################
|
||||
# Load all steps #
|
||||
##################
|
||||
|
|
2
.github/workflows/stale.yml
vendored
2
.github/workflows/stale.yml
vendored
|
@ -27,6 +27,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
# only run on schedule
|
||||
if: ${{ github.event_name == 'schedule' }}
|
||||
timeout-minutes: 60
|
||||
steps:
|
||||
- name: Mark issue stale
|
||||
uses: actions/stale@v4
|
||||
|
@ -48,6 +49,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
# do not run on schedule
|
||||
if: "${{ github.event_name == 'issue_comment' && contains(github.event.issue.labels.*.name, 'O: stale 🤖') && github.event.issue.user.type != 'Bot' }}"
|
||||
timeout-minutes: 60
|
||||
steps:
|
||||
- name: Mark issue not stale
|
||||
uses: actions/github-script@v5
|
||||
|
|
1
.github/workflows/trivy.yml
vendored
1
.github/workflows/trivy.yml
vendored
|
@ -10,6 +10,7 @@ jobs:
|
|||
scan-container:
|
||||
name: Build
|
||||
runs-on: ubuntu-18.04
|
||||
timeout-minutes: 60
|
||||
steps:
|
||||
######################
|
||||
# Checkout code base #
|
||||
|
|
1
.github/workflows/versioning.yml
vendored
1
.github/workflows/versioning.yml
vendored
|
@ -28,6 +28,7 @@ on:
|
|||
jobs:
|
||||
actions-tagger:
|
||||
runs-on: windows-latest
|
||||
timeout-minutes: 60
|
||||
steps:
|
||||
#############################
|
||||
# Check out the latest code #
|
||||
|
|
Loading…
Reference in a new issue