diff --git a/.github/workflows/check-typo.yml b/.github/workflows/check-typo.yml index 1f0c2dd..93d0a8c 100644 --- a/.github/workflows/check-typo.yml +++ b/.github/workflows/check-typo.yml @@ -14,6 +14,9 @@ concurrency: group: check-typo-${{ github.head_ref || github.ref }} cancel-in-progress: true +permissions: + contents: read + jobs: check-typo: name: Check Typo using codespell diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 666c326..a7e92aa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,6 +23,9 @@ env: POSTGRES_PASSWORD: postgres POSTGRES_DB: postgres +permissions: + contents: read + jobs: lint: name: Lint diff --git a/.github/workflows/lint-bash.yml b/.github/workflows/lint-bash.yml index 944202d..547b77f 100644 --- a/.github/workflows/lint-bash.yml +++ b/.github/workflows/lint-bash.yml @@ -17,6 +17,9 @@ concurrency: group: lint-bash-${{ github.head_ref || github.ref }} cancel-in-progress: true +permissions: + contents: read + jobs: lint-bash: name: Lint Bash Scripts diff --git a/.github/workflows/lint-format.yml b/.github/workflows/lint-format.yml index 319d248..e1d7120 100644 --- a/.github/workflows/lint-format.yml +++ b/.github/workflows/lint-format.yml @@ -14,6 +14,9 @@ concurrency: group: lint-format-${{ github.head_ref || github.ref }} cancel-in-progress: true +permissions: + contents: read + jobs: lint-format: name: Lint File Endings & Trailing Whitespaces diff --git a/.github/workflows/lint-markdown.yml b/.github/workflows/lint-markdown.yml index 24deee8..0665adb 100644 --- a/.github/workflows/lint-markdown.yml +++ b/.github/workflows/lint-markdown.yml @@ -18,6 +18,9 @@ concurrency: group: lint-markdown-${{ github.head_ref || github.ref }} cancel-in-progress: true +permissions: + contents: read + jobs: lint-markdown: name: Lint Markdown Files diff --git a/.github/workflows/lint-yaml.yml b/.github/workflows/lint-yaml.yml index 9c15905..5be3d9d 100644 --- a/.github/workflows/lint-yaml.yml +++ b/.github/workflows/lint-yaml.yml @@ -18,6 +18,9 @@ concurrency: group: lint-yaml-${{ github.head_ref || github.ref }} cancel-in-progress: true +permissions: + contents: read + jobs: lint-yaml: name: Lint YAML Files diff --git a/.github/workflows/schema-compat.yml b/.github/workflows/schema-compat.yml index 87c0f69..b2463e6 100644 --- a/.github/workflows/schema-compat.yml +++ b/.github/workflows/schema-compat.yml @@ -25,6 +25,10 @@ concurrency: env: PARADEDB_VERSION: ${{ inputs.version || github.event.client_payload.version }} +permissions: + contents: read + issues: write + jobs: schema-compat: name: Check Schema Compatibility