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/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
name: CI
on:
push:
branches:
- main
pull_request:

permissions: # least privilege; jobs needing OIDC override this
contents: read

jobs:
CI:
runs-on: ${{ matrix.os }}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
schedule:
- cron: 0 0 * * *

permissions: # least privilege; jobs needing OIDC override this
contents: read

jobs:
Coverage:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/spec_update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
repository_dispatch:
types: [spec_update]

permissions: # least privilege; PR creation uses the SPEC_UPDATE_TOKEN PAT
contents: read

jobs:
Update:
runs-on: ubuntu-latest
Expand Down
Loading