diff --git a/.github/workflows/bump-libs.yaml b/.github/workflows/bump-libs.yaml index e4cfecaa..bd8b39da 100644 --- a/.github/workflows/bump-libs.yaml +++ b/.github/workflows/bump-libs.yaml @@ -6,6 +6,9 @@ on: schedule: - cron: '30 6 * * 1' # on each monday 6:30 +permissions: + contents: read + # Checks if any concurrent jobs is running for kernels CI and eventually cancel it. concurrency: group: bump-libs-ci diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml index 8e82dda8..ab175c6f 100644 --- a/.github/workflows/format.yaml +++ b/.github/workflows/format.yaml @@ -6,6 +6,9 @@ on: - master - "release/**" +permissions: + contents: read + jobs: format: name: format code 🐲 diff --git a/.github/workflows/master.yaml b/.github/workflows/master.yaml index 9f3a1e6e..9fb4a161 100644 --- a/.github/workflows/master.yaml +++ b/.github/workflows/master.yaml @@ -3,6 +3,9 @@ on: push: branches: [master] +permissions: + contents: read + # Checks if any concurrent jobs is running for master CI and eventually cancel it concurrency: group: ci-master diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 74e3a4da..65204e51 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -3,6 +3,9 @@ on: release: types: [published] +permissions: + contents: read + # Checks if any concurrent jobs is running for release CI and eventually cancel it. concurrency: group: ci-release