Skip to content

Commit

Permalink
chore(ci): Reduce monorepo auto-update frequency (#671)
Browse files Browse the repository at this point in the history
* chore(ci): Reduce monorepo auto-update frequency

* move to repository secret
  • Loading branch information
clabby authored Oct 9, 2024
1 parent c2eb864 commit 37edfdd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/monorepo_pin_update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Update the monorepo pin commit

on:
schedule:
- cron: '30 5 */2 * *'
- cron: '30 5 */14 * *'
workflow_dispatch:

jobs:
Expand All @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: true
token: ${{ secrets.PAT_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
- uses: taiki-e/install-action@just
- uses: dtolnay/rust-toolchain@stable
- name: Update Monorepo Commit
Expand All @@ -23,7 +23,7 @@ jobs:
id: cpr
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.PAT_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: Update Monorepo Commit
signoff: false
branch: bot/update-monorepo
Expand Down

0 comments on commit 37edfdd

Please sign in to comment.