From 48a882ad4bdf8df6abd0e02c85a9c633fb2e5d35 Mon Sep 17 00:00:00 2001 From: katspaugh Date: Tue, 31 Oct 2023 11:42:29 +0100 Subject: [PATCH] Write permissions --- .github/workflows/e2e.yml | 3 +++ .github/workflows/lint.yml | 3 +++ .github/workflows/safe-apps-e2e.yml | 3 +++ .github/workflows/tag-release.yml | 4 ++++ .github/workflows/test.yml | 3 +++ 5 files changed, 16 insertions(+) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 6af7316dbc..3bd2ae5f86 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -3,6 +3,9 @@ name: e2e on: pull_request: +permissions: + issues: write + concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d9bf694363..c1fdcdf2ba 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,6 +1,9 @@ name: 'Lint' on: [pull_request] +permissions: + issues: write + concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true diff --git a/.github/workflows/safe-apps-e2e.yml b/.github/workflows/safe-apps-e2e.yml index 6067184867..62cff5ac58 100644 --- a/.github/workflows/safe-apps-e2e.yml +++ b/.github/workflows/safe-apps-e2e.yml @@ -4,6 +4,9 @@ on: pull_request: workflow_dispatch: +permissions: + issues: write + concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true diff --git a/.github/workflows/tag-release.yml b/.github/workflows/tag-release.yml index 6c068f4572..c1b8e05277 100644 --- a/.github/workflows/tag-release.yml +++ b/.github/workflows/tag-release.yml @@ -6,6 +6,10 @@ on: - main types: [closed] +permissions: + contents: + write + jobs: tag-release: runs-on: ubuntu-latest diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a25c47ab2a..b7bdd97b1c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,6 +6,9 @@ on: branches: - main +permissions: + issues: write + concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true