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
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Unit Tests

# See, scorecard.dev (Token Permission)
# https://github.com/ossf/scorecard/blob/a16e0f9eb245274f08512e33dc7afa78d21c460c/docs/checks.md#token-permissions
permissions: read-all

concurrency:
group: ${{ github.workflow }}#${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'main' }}
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/clang_format.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: ClangFormat

permissions: read-all

concurrency:
group: ${{ github.workflow }}#${{ github.ref }}
cancel-in-progress: true
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Coverage

permissions: read-all

concurrency:
group: ${{ github.workflow }}#${{ github.ref }}
cancel-in-progress: true
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
name: Documentation

permissions:
contents: read
pages: write
id-token: write

on:
push:
branches:
Expand All @@ -9,11 +14,6 @@ on:
- v2.x
- main

permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment
concurrency:
group: ${{ github.workflow }}#${{ github.ref }}
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/integration_trigger.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Integration Test Trigger

permissions: read-all

on:
push:
branches:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/version_file.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: HighFive Check Version File

permissions: read-all

on:
workflow_dispatch:
push:
Expand Down
Loading