Skip to content

Commit

Permalink
chore: check for changes before commit
Browse files Browse the repository at this point in the history
  • Loading branch information
limcheekin committed Oct 20, 2023
1 parent 6202d6e commit e9750d5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/browser-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,7 @@ jobs:
git config --global user.name "GitHub Actions"
git config --global user.email "[email protected]"
git add integration_test/reports
git commit -m "chore: added integration test reports"
git push
if [ -n "$(git status --porcelain)" ]; then
git commit -m "chore: added integration test reports"
git push
fi

0 comments on commit e9750d5

Please sign in to comment.