Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/spec_zero.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,12 @@ jobs:
- name: Run pre-commit hooks to update other files
run: |
pip install pre-commit
pre-commit run --all
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Restore with || true?

And if you add pr: to the on: block above we can see it make an attempt here, then remove, then merge, then trigger on main with workflow_dispatch

pre-commit run --all || true
if: steps.status.outputs.dirty == 'true'
- name: Create PR
run: |
set -xeo pipefail
git diff
git config --global user.email "50266005+mne-bot@users.noreply.github.com"
git config --global user.name "mne[bot]"
git checkout -b spec_zero
Expand Down
Loading