Skip to content

Commit

Permalink
chore: just trigger ci
Browse files Browse the repository at this point in the history
  • Loading branch information
refcell committed Nov 1, 2024
1 parent 85b1c88 commit 9b5c3b6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/monorepo_pin_update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: true
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.GITHUB_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
Expand All @@ -32,10 +32,12 @@ jobs:
title: '[BOT] Update Monorepo'
body: |
### Description
Automated PR to update the monorepo commit.
labels: |
A-ci
C-bot
assignees: refcell
draft: false
- name: Trigger CI Runs
run: just trigger
5 changes: 5 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -158,3 +158,8 @@ monorepo:
update-monorepo:
[ ! -d monorepo ] && git clone https://github.com/ethereum-optimism/monorepo
cd monorepo && git rev-parse HEAD > ../.monorepo

# Force pushes an empty commit to the git branch to trigger CI
trigger:
git commit --amend --no-edit
git push --force-with-lease

0 comments on commit 9b5c3b6

Please sign in to comment.