Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set shorter workflow timeouts #3016

Merged
merged 1 commit into from
Nov 25, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/container-autoupdate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
matrix:
branch:
- master
timeout-minutes: 60
steps:
- name: Checkout anaconda repository
uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/validate-rhel-8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
needs: pr-info
if: needs.pr-info.outputs.base_ref == 'rhel-8' && needs.pr-info.outputs.allowed_user == 'true'
runs-on: [self-hosted, ci-tasks, rhel-8]
timeout-minutes: 30
steps:
# we post statuses manually as this does not run from a pull_request event
# https://developer.github.com/v3/repos/statuses/#create-a-status
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
env:
CI_TAG: '${{ matrix.release }}'
CONTAINER_BUILD_ARGS: '${{ matrix.build-args }}'
timeout-minutes: 30

steps:
- name: Clone repository
Expand Down Expand Up @@ -58,6 +59,7 @@ jobs:
image: docker.io/fedora:rawhide
# HACK: bash's builtin `test -r` fails due to incompatible seccomp profile
options: --security-opt=seccomp=unconfined
timeout-minutes: 30
steps:
- name: Clone repository
uses: actions/checkout@v2
Expand Down