Remove docs on PRs
All checks were successful
Lint JavaScript/Node.js / lint-js (pull_request) Successful in 11s
DRB Tests / drb_mocha_tests (pull_request) Successful in 28s

- Update wiki step
This commit is contained in:
Logan Cusano
2024-08-17 19:46:15 -04:00
parent a18337d0f8
commit 750877db1a

View File

@@ -4,10 +4,6 @@ on:
push:
branches:
- main
# TODO - REMOVE AFTER TESTING
pull_request:
branches:
- "*"
# schedule:
# - cron: '0 0 * * 1' # Every Monday at midnight (UTC)
@@ -42,5 +38,10 @@ jobs:
git config user.name "gitea-actions"
git config user.email "gitea-actions@cusano.net"
git add .
git commit -m "Update wiki from JSDoc"
git push
# Check if there are any changes to commit
if git diff --cached --quiet; then
echo "No changes to commit."
else
git commit -m "Update wiki from JSDoc"
git push
fi