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/build-lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: Build, Lint, and Test
on:
workflow_call:

permissions:
contents: read

jobs:
prepare:
name: Prepare
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
branches: [main]
pull_request:

permissions:
contents: read

jobs:
check-workflows:
name: Check workflows
Expand Down Expand Up @@ -71,6 +74,7 @@ jobs:
- check-workflows
- analyse-code
- build-lint-test
permissions: {}
outputs:
PASSED: ${{ steps.set-output.outputs.PASSED }}
steps:
Expand All @@ -83,6 +87,7 @@ jobs:
if: ${{ always() }}
runs-on: ubuntu-latest
needs: all-jobs-completed
permissions: {}
steps:
- name: Check that all jobs have passed
run: |
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
required: true
PUBLISH_DOCS_TOKEN:
required: true

permissions:
contents: read

jobs:
build:
name: Build
Expand Down
Loading