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
3 changes: 3 additions & 0 deletions .github/workflows/ci-cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
jobs:
cleanup:
runs-on: ubuntu-latest
permissions:
contents: read
actions: write
steps:
- name: Check out code
uses: actions/checkout@v6
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ concurrency:
group: ci-new-2-${{ github.event.pull_request.number }}
cancel-in-progress: true

permissions:
contents: read

jobs:
check-changes:
name: Check for Changes
Expand Down Expand Up @@ -276,6 +279,9 @@ jobs:
runs-on: ubuntu-latest
needs: check-changes
if: needs.check-changes.outputs.src_changes == 'true'
permissions:
contents: read
pull-requests: write
steps:
- name: Checkout Repository
uses: actions/checkout@v6
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ concurrency:
group: main-coverage
cancel-in-progress: true

permissions:
contents: read

jobs:
configure:
name: Generate Test Matrix
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ on:
- .docker/website/**
- website/**

permissions:
contents: read

jobs:
build-and-deploy:
runs-on: ubuntu-latest
Expand Down
Loading