mirror of
https://github.com/ai-robots-txt/ai.robots.txt.git
synced 2025-04-04 11:03:59 +00:00
Merge pull request #58 from fabianegli/fabianegli-restore-attribution
Restore attribution
This commit is contained in:
commit
24666e8b15
2 changed files with 44 additions and 10 deletions
16
.github/workflows/ai_robots_update.yml
vendored
16
.github/workflows/ai_robots_update.yml
vendored
|
@ -1,8 +1,5 @@
|
|||
name: Updates for AI robots files
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- "main"
|
||||
schedule:
|
||||
- cron: "0 0 * * *"
|
||||
|
||||
|
@ -24,11 +21,10 @@ jobs:
|
|||
git --no-pager diff
|
||||
git add -A
|
||||
git diff --quiet && git diff --staged --quiet || (git commit -m "Update from Dark Visitors" && git push)
|
||||
|
||||
echo "Updating robots.txt and table-of-bot-metrics.md if necessary ..."
|
||||
python code/dark_visitors.py --convert
|
||||
echo "... done."
|
||||
git --no-pager diff
|
||||
git add -A
|
||||
git diff --quiet && git diff --staged --quiet || (git commit -m "Updated from new robots.json" && git push)
|
||||
shell: bash
|
||||
call-main:
|
||||
needs: dark-visitors
|
||||
uses: ./.github/workflows/main.yml
|
||||
secrets: inherit
|
||||
with:
|
||||
message: "Update from Dark Visitors"
|
||||
|
|
38
.github/workflows/main.yml
vendored
Normal file
38
.github/workflows/main.yml
vendored
Normal file
|
@ -0,0 +1,38 @@
|
|||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
message:
|
||||
type: string
|
||||
required: true
|
||||
description: The message to commit
|
||||
push:
|
||||
paths:
|
||||
- 'robots.json'
|
||||
branches:
|
||||
- "main"
|
||||
|
||||
jobs:
|
||||
ai-robots-txt:
|
||||
runs-on: ubuntu-latest
|
||||
name: ai-robots-txt
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 2
|
||||
- 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 "Updating robots.txt and table-of-bot-metrics.md if necessary ..."
|
||||
python code/dark_visitors.py --convert
|
||||
echo "... done."
|
||||
git --no-pager diff
|
||||
git add -A
|
||||
if [ -n "${{ inputs.message }}" ]; then
|
||||
git commit -m "${{ inputs.message }}"
|
||||
else
|
||||
git commit -m "${{ github.event.head_commit.message }}"
|
||||
fi
|
||||
git push
|
||||
shell: bash
|
Loading…
Reference in a new issue