Skip to content

Commit

Permalink
Fix CI failing (#3957)
Browse files Browse the repository at this point in the history
* Fix CI failing

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* docs: update CHANGES.md

* docs: fix changelog location to unreleased

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
kiyoon and pre-commit-ci[bot] committed Oct 23, 2023
1 parent c0adca3 commit 8de4be5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGES.md
Expand Up @@ -46,6 +46,8 @@
- The summary output for GitHub workflows is now suppressible using the `summary`
parameter. (#3958)

- Fix the action failing when Black check doesn't pass (#3957)

### Documentation

<!-- Major changes to documentation and policies. Small docs changes
Expand Down
3 changes: 3 additions & 0 deletions action.yml
Expand Up @@ -39,6 +39,9 @@ runs:
steps:
- name: black
run: |
# Even when black fails, do not close the shell
set +e
if [ "$RUNNER_OS" == "Windows" ]; then
runner="python"
else
Expand Down

0 comments on commit 8de4be5

Please sign in to comment.