From de7c3359f7f170ebeb457c1b151909f3d0fe8ce1 Mon Sep 17 00:00:00 2001 From: "Dr.Blank" <64108942+Dr-Blank@users.noreply.github.com> Date: Fri, 11 Apr 2025 12:13:08 +0530 Subject: [PATCH] ci: use PAT instead of github token --- .github/workflows/prepare-release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/prepare-release.yaml b/.github/workflows/prepare-release.yaml index f1cb4a6..ceb9105 100644 --- a/.github/workflows/prepare-release.yaml +++ b/.github/workflows/prepare-release.yaml @@ -27,8 +27,8 @@ jobs: uses: actions/checkout@v4 with: # Use a PAT if pushing to protected branches is restricted for GITHUB_TOKEN - # token: ${{ secrets.PAT_TOKEN }} # Create PAT with repo scope - token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.PAT_TOKEN }} # Create PAT with repo scope + # token: ${{ secrets.GITHUB_TOKEN }} # this does not trigger other workflows # Setup Flutter/Dart environment needed to run dart pub global activate - name: Setup Flutter