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
6 changes: 6 additions & 0 deletions .github/workflows/CommitMessage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ on:
pull_request:
workflow_call:

permissions:
contents: read
# pull-requests: write lets the sticky-comment step post and clear the
# commit-message feedback comment on the PR.
pull-requests: write

jobs:
gitlint:
name: Check commit messages
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/base-installer-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

permissions:
# contents: write is required to tag the repo and publish the GitHub Release
# (softprops/action-gh-release); no other GITHUB_TOKEN write is needed here.
contents: write

jobs:
debug_build_and_test:
env:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/check-whitespace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read

jobs:
check-whitespace:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/link-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
pull_request:
workflow_dispatch:

permissions:
contents: read

jobs:
lychee:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/openspec-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
- 'openspec/**'
- '**/AGENTS.md'

permissions:
contents: read

jobs:
validate-refs:
runs-on: windows-2022
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/stray-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read

jobs:
stray-docs:
runs-on: ubuntu-latest
Expand Down
Loading