Skip to content

Commit 05b6d84

Browse files
committed
Fix issue in format.yml
this also simeltaneously acts as the test commit :>
1 parent f92d5b0 commit 05b6d84

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/format.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121
- name: Install dependencies
2222
run: |
2323
sudo apt update
24-
24+
2525
sudo apt install python3 black -y
2626
2727
sudo npm i -g prettier
28-
28+
2929
black --version
3030
echo "prettier $(prettier --version)"
3131
@@ -38,7 +38,7 @@ jobs:
3838
run: |
3939
#!/bin/bash
4040
shopt -s extglob
41-
if [[ `git status --porcelain` ]]; then
41+
if [[ `git status !(.github) --porcelain` ]]; then
4242
git add !(.github)
4343
git config --global user.name "GitHub Actions"
4444
git config --global user.email "github-actions[bot]@users.noreply.github.com"

0 commit comments

Comments
 (0)