Skip to content
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
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@ on:
pull_request:
workflow_dispatch:

permissions:
contents: read

jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v6
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/dependabot_auto_merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
auto-merge:
if: github.event.workflow_run.conclusion == 'success' && startsWith(github.event.workflow_run.head_branch, 'dependabot/')
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: write
pull-requests: write
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/monthly_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,15 @@ name: Monthly Publish
- cron: "15 3 1 * *"
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: false

jobs:
monthly-publish:
if: github.ref_name != 'logs'
runs-on:
timeout-minutes: 60

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Restore the runner list under runs-on

In the monthly publish workflow, adding timeout-minutes at the same indentation as the empty runs-on: changes the YAML meaning: the runner labels are no longer assigned to runs-on and instead get folded into the timeout-minutes value (locally parsing this file yields runs-on: null and timeout-minutes: "60 - self-hosted - Linux - X64"). That makes the scheduled/manual monthly publish job invalid because GitHub Actions has no runner target and the timeout is not a number. Move timeout-minutes: 60 outside the runs-on block while keeping the self-hosted/Linux/X64 list under runs-on.

Useful? React with 👍 / 👎.

- self-hosted
- Linux
- X64
Expand Down