Merge pull request #47 from fabianegli/fabianegli-patch-1

log the diff in the update actions
This commit is contained in:
Glyn Normington 2024-10-19 02:58:05 +01:00 committed by GitHub
commit 4d47b17c45
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 1 deletions

View file

@ -15,7 +15,10 @@ jobs:
pip install beautifulsoup4 requests
git config --global user.name "dark-visitors"
git config --global user.email "dark-visitors@users.noreply.github.com"
echo "Running update script ..."
python code/dark_visitors.py
echo "... done."
git --no-pager diff
git add -A
git diff --quiet && git diff --staged --quiet || (git commit -m "Daily update from Dark Visitors" && git push)
shell: bash
@ -24,4 +27,4 @@ jobs:
uses: ./.github/workflows/main.yml
secrets: inherit
with:
message: "Daily update from Dark Visitors"
message: "Daily update from Dark Visitors"

View file

@ -20,7 +20,12 @@ jobs:
- run: |
git config --global user.name "ai.robots.txt"
git config --global user.email "ai.robots.txt@users.noreply.github.com"
git log -1
git status
echo "Running update script ..."
php -f code/action.php
echo "... done."
git --no-pager diff
git add -A
if [ -n "${{ inputs.message }}" ]; then
git commit -m "${{ inputs.message }}"