Daily update from Dark Visitors #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
workflow_call: | |
inputs: | |
message: | |
type: string | |
required: true | |
description: The message to commit | |
push: | |
paths: | |
- 'robots.json' | |
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 rm robots.txt | |
git rm table-of-bot-metrics.md | |
git add -A | |
git commit -m "Removing previously generated files" | |
git push | |
php -f code/action.php | |
git config --global user.name "ai.robots.txt" | |
git config --global user.email "ai.robots.txt@users.noreply.github.com" | |
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 |