diff options
author | Nick Brassel <nick@tzarc.org> | 2023-03-12 12:18:49 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-12 01:18:49 +0000 |
commit | 6b9dced6117c08879ec00fe3d6d16405aa708527 (patch) | |
tree | 6f5541ac2bbcad443c280e5ff4d10a343bb142bb | |
parent | 042e42d1b7de603bc0a164b7d3b2ec761c6e140f (diff) |
Allow for CI builds to run for 23 hours, instead of 6. (#20094)
-rw-r--r-- | .github/workflows/ci_builds.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/ci_builds.yml b/.github/workflows/ci_builds.yml index 1822b8e36a..13bac1d4bd 100644 --- a/.github/workflows/ci_builds.yml +++ b/.github/workflows/ci_builds.yml @@ -11,7 +11,9 @@ on: jobs: ci_builds: + name: "CI Build: {{ matrix.keymap }}" runs-on: self-hosted + timeout-minutes: 1380 if: github.repository == 'qmk/qmk_firmware' |