From 71c853ca6d1f65cd97abe734f710a45d242a0ebe Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Tue, 9 Sep 2025 15:30:23 +0100 Subject: [PATCH] [LOCAL] Use REACT_NATIVE_BOT_GITHUB_TOKEN token for changelog and bump lockfiles --- .github/workflows/bump-podfile-lock.yml | 1 + .github/workflows/generate-changelog.yml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.github/workflows/bump-podfile-lock.yml b/.github/workflows/bump-podfile-lock.yml index 80b726edfd5..6f02f0f222a 100644 --- a/.github/workflows/bump-podfile-lock.yml +++ b/.github/workflows/bump-podfile-lock.yml @@ -10,6 +10,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 with: + token: ${{ secrets.REACT_NATIVE_BOT_GITHUB_TOKEN }} fetch-depth: 0 fetch-tags: true - name: Install dependencies diff --git a/.github/workflows/generate-changelog.yml b/.github/workflows/generate-changelog.yml index 9734ebd6417..4e58048db9b 100644 --- a/.github/workflows/generate-changelog.yml +++ b/.github/workflows/generate-changelog.yml @@ -10,6 +10,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 with: + token: ${{ secrets.REACT_NATIVE_BOT_GITHUB_TOKEN }} fetch-depth: 0 fetch-tags: true - name: Install dependencies @@ -22,6 +23,7 @@ jobs: - name: Generate Changelog uses: actions/github-script@v6 with: + github-token: ${{ secrets.REACT_NATIVE_BOT_GITHUB_TOKEN }} script: | const {generateChangelog} = require('./.github/workflow-scripts/generateChangelog'); const version = '${{ github.ref_name }}';