mirror of
https://github.com/ai-robots-txt/ai.robots.txt.git
synced 2025-04-04 19:13:57 +00:00
Merge pull request #47 from fabianegli/fabianegli-patch-1
log the diff in the update actions
This commit is contained in:
commit
4d47b17c45
2 changed files with 9 additions and 1 deletions
5
.github/workflows/daily_update.yml
vendored
5
.github/workflows/daily_update.yml
vendored
|
@ -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"
|
||||
|
|
5
.github/workflows/main.yml
vendored
5
.github/workflows/main.yml
vendored
|
@ -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 }}"
|
||||
|
|
Loading…
Reference in a new issue