From 502461dde20cc7df5d383f3a70db6c5a0e464d9e Mon Sep 17 00:00:00 2001 From: Nick Johnson Date: Thu, 12 Feb 2026 13:01:15 -0800 Subject: [PATCH] Use repository secret instead of default token Using nyonson's PAT to trigger the automated toolchain update PRs. This is slightly preferrable to the default GITHUB_TOKEN. --- .github/workflows/update-toolchains.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/update-toolchains.yml b/.github/workflows/update-toolchains.yml index 2a9ec95..f318aef 100644 --- a/.github/workflows/update-toolchains.yml +++ b/.github/workflows/update-toolchains.yml @@ -15,4 +15,8 @@ jobs: steps: - uses: actions/checkout@v6 - uses: rust-bitcoin/rust-bitcoin-maintainer-tools/.github/actions/update-nightly@320a06a6647c90ac97452b20fad5b689905a9791 + with: + token: ${{ secrets.RBMT_PRS }} - uses: rust-bitcoin/rust-bitcoin-maintainer-tools/.github/actions/update-stable@320a06a6647c90ac97452b20fad5b689905a9791 + with: + token: ${{ secrets.RBMT_PRS }}