Skip to content

Commit

Permalink
chore(ci): Use PAT_TOKEN for automated monorepo pin update (#773)
Browse files Browse the repository at this point in the history
  • Loading branch information
clabby authored Nov 1, 2024
1 parent 4002bdb commit ecc5f57
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/monorepo_pin_update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: true
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.PAT_TOKEN }}
- uses: taiki-e/install-action@just
- uses: dtolnay/rust-toolchain@stable
- name: Update Monorepo Commit
- name: Update Monorepo Commit
run: just update-monorepo
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.PAT_TOKEN }}
commit-message: Update Monorepo Commit
signoff: false
branch: bot/update-monorepo
Expand All @@ -32,7 +32,7 @@ jobs:
title: '[BOT] Update Monorepo'
body: |
### Description
Automated PR to update the monorepo commit.
labels: |
A-ci
Expand Down

0 comments on commit ecc5f57

Please sign in to comment.