Skip to content

Commit

Permalink
Merge pull request #239 from MattTheCuber/post-227-fixes
Browse files Browse the repository at this point in the history
Post #227 fixes
  • Loading branch information
mahmoud authored Jan 2, 2025
2 parents a025a3c + 3a45737 commit 81f2df6
Show file tree
Hide file tree
Showing 2 changed files with 100 additions and 96 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/validate-test-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,5 +87,9 @@ jobs:
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add projects.json
git commit -m "chore: update project.json [skip ci]"
git push origin master
if git diff --cached --quiet; then
echo "No changes to commit"
else
git commit -m "chore: update project.json [skip ci]"
git push origin master
fi
Loading

0 comments on commit 81f2df6

Please sign in to comment.