From 0dfaa0ede45e90431ad963753cc1c6fb23472163 Mon Sep 17 00:00:00 2001 From: Donkie Date: Fri, 29 Dec 2023 12:00:48 +0100 Subject: [PATCH] Trigger release with PAT This is needed because the regular GITHUB_TOKEN does allow repo write, but it doesn't trigger any new actions. --- .github/workflows/trigger-release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/trigger-release.yml b/.github/workflows/trigger-release.yml index 652ae50..a6f0162 100644 --- a/.github/workflows/trigger-release.yml +++ b/.github/workflows/trigger-release.yml @@ -19,6 +19,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + token: ${{ secrets.PAT }} - name: Set up Python uses: actions/setup-python@v4