Skip to content
This repository has been archived by the owner on Mar 5, 2024. It is now read-only.

Some workflows have no defined timeouts or are not using self-hosted #47

Open
dcsil-team-app bot opened this issue Mar 29, 2022 · 0 comments
Open

Comments

@dcsil-team-app
Copy link

This repo has workflows that have no defined timeouts and/or are not using self-hosted.

We use self hosted runners to avoid overage costs associated with GitHub Actions. However, we don't have a lot of workers to handle all of the load.
To ensure a single build doesn't spend hours and monopolize our workers, we limit each job to 20 minutes.
Please add a timeout to your jobs. We will disable your actions until you add them.

Your build may also be missing self-hosted in the runs-on field.

Docs: https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idtimeout-minutes
Example:

jobs:
  build:
    runs-on: self-hosted # This is required
    timeout-minutes: 20 # Add this line here

Affected Workflows:

Workflow Path Job Re-enable
.github/workflows/upload_coverage.yml coverage https://github.com/dcsil/konsensus-app-frontend/actions/workflows/upload_coverage.yml
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

0 participants