From 9b260b374bc221c77d198b174599e32a78264300 Mon Sep 17 00:00:00 2001 From: JJ Brosnan <84038776+jjbrosnan@users.noreply.github.com> Date: Wed, 18 Dec 2024 13:44:54 -0500 Subject: [PATCH] chore: Give link checker write permissions (#6500) The nightly link checker hasn't been able to write issues because I missed this in my original YAML file. --- .github/workflows/links.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/links.yml b/.github/workflows/links.yml index c7741f09ff4..3757953eb31 100644 --- a/.github/workflows/links.yml +++ b/.github/workflows/links.yml @@ -9,6 +9,8 @@ on: jobs: linkChecker: runs-on: ubuntu-latest + permissions: + issues: write if: ${{ github.repository_owner == 'deephaven' }} steps: - uses: actions/checkout@v4