We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17d570e commit ab63c24Copy full SHA for ab63c24
.github/workflows/format-command.yml
@@ -45,7 +45,8 @@ jobs:
45
# Run "make format" and commit the change to the PR branch
46
- name: Commit to the PR branch if any changes
47
run: |
48
- make format
+ # Use '|| true' to ensure the workflow doesn't stop when `make format` fails
49
+ make format || true
50
if [[ $(git ls-files -m) ]]; then
51
git config --global user.name 'actions-bot'
52
git config --global user.email '58130806+actions-bot@users.noreply.github.com'
0 commit comments