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
9 changes: 9 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@ on:
# Weekly auto-build
schedule:
- cron: "0 0 * * 1"
# A merge that changes a kernel config snippet changes the built kernel
# without bumping any version, so republish the release set now rather than
# waiting for the weekly cron. On main the tags carry no branch suffix, so
# this overwrites the canonical release tags with the new config content.
push:
branches:
- main
paths:
- "configs/**"
workflow_dispatch:
inputs:
spec:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
push:
branches:
- main
# Config-snippet merges are built and published by build.yml; skip the
# throwaway publish:false rebuild here so a config merge builds once.
paths-ignore:
- "configs/**"
permissions:
contents: read
packages: read
Expand Down