From aadf2408c7d01a6e31ef3fe115fac5916e8c5c2d Mon Sep 17 00:00:00 2001 From: "prokhorov.alexander" Date: Tue, 1 Jul 2025 19:56:16 +0400 Subject: [PATCH] Use GITHUB_TOKEN instead of ACTIVE_TOKEN in handle-state and helper-rebase workflows --- .github/workflows/handle-stale.yml | 2 +- .github/workflows/helper-rebase.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/handle-stale.yml b/.github/workflows/handle-stale.yml index 6d5f26d9fa8..173cc6663f5 100644 --- a/.github/workflows/handle-stale.yml +++ b/.github/workflows/handle-stale.yml @@ -30,4 +30,4 @@ jobs: - uses: actions/checkout@v4 - uses: gautamkrishnar/keepalive-workflow@v2 with: - gh_token: ${{ secrets.ACTIVE_TOKEN }} \ No newline at end of file + gh_token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/helper-rebase.yml b/.github/workflows/helper-rebase.yml index 5afb73bb84d..ac6d12ccf07 100644 --- a/.github/workflows/helper-rebase.yml +++ b/.github/workflows/helper-rebase.yml @@ -5,7 +5,7 @@ on: types: [created] env: - GITHUB_TOKEN: ${{ secrets.ACTIVE_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} jobs: rebase: @@ -16,7 +16,7 @@ jobs: - name: Checkout the latest code uses: actions/checkout@v3 with: - token: ${{ secrets.ACTIVE_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} fetch-depth: 0 # otherwise, you will fail to push refs to dest repo - name: Automatic Rebase uses: cirrus-actions/rebase@1.4