From ffb692b4a14850f1caf7460cb7dac5ce95471e05 Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Wed, 29 Jan 2025 19:49:39 +0200 Subject: [PATCH] github: Configure a single Github actions token --- .github/workflows/labeler.yml | 2 +- .github/workflows/stale.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 9b2b02c5f..c059325a8 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -13,5 +13,5 @@ jobs: steps: - uses: actions/labeler@v4 with: - repo-token: "${{ secrets.GITHUB_TOKEN }}" + repo-token: "${{ secrets.GH_TOKEN }}" configuration-path: .github/labeler.yml diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index ad9d1bbe7..44fb4cff3 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -14,7 +14,7 @@ jobs: - name: Close stale pull requests uses: actions/stale@v6 with: - repo-token: ${{ secrets.STALE_GH_TOKEN }} + repo-token: ${{ secrets.GH_TOKEN }} operations-per-run: 1000 ascending: true stale-pr-message: 'This pull request has been marked as stale due to inactivity. It will be closed in 7 days if no further activity occurs.'