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
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ updates:
interval: monthly
labels:
- "Dependencies"
cooldown:
default-days: 1
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,5 @@ on:
required: false
NETWORK_TEST_CLIENT_SECRET:
required: false
permissions: read-all
permissions:
contents: read
3 changes: 3 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
concurrency:
group: lint-${{ github.ref }}
cancel-in-progress: true
jobs:
actionlint:
name: actionlint
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pre-commit_autoupdate.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
jobs:
auto-update:
name: Auto-update pre-commit hooks
runs-on: ubuntu-latest
steps:
# The app token lets create-pull-request push a branch that triggers CI
Expand All @@ -25,6 +26,9 @@ jobs:
run: uv run --no-sync pre-commit run --all-files
continue-on-error: true
- uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
# create-pull-request commits the autoupdate changes, pushes a branch, and
# opens the PR -- functionality `gh pr create` alone does not provide.
# zizmor: ignore[superfluous-actions]
with:
branch: update/pre-commit-hooks
title: Update pre-commit hooks
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/prepare_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ jobs:
- id: create-pr
name: Create Pull Request
uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
# create-pull-request pushes the release branch and opens the PR with the
# app token -- functionality `gh pr create` alone does not provide.
# zizmor: ignore[superfluous-actions]
with:
body: ""
branch: prepare_release_v${{ env.version }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/stale_action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ env:
stale-close-label: Auto-closed - Stale
jobs:
stale:
name: Close stale issues and PRs
permissions:
issues: write # required to comment on and close stale issues
pull-requests: write # required to comment on and close stale PRs
Expand Down
Loading