Run Sitemap updater #2124
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
name: "Run Sitemap updater" | |
on: | |
schedule: | |
- cron: "0 */6 * * *" # Every 6th hour | |
workflow_dispatch: | |
concurrency: | |
group: run-sitemap-update | |
cancel-in-progress: true | |
env: | |
SNITCH_URL: ${{ secrets.SNITCH_URL }} | |
jobs: | |
sitemap_processing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- id: set-git-identity | |
shell: bash | |
run: | | |
git config user.email "[email protected]" | |
git config user.name "MozMEAORobot" | |
- id: trigger-processing | |
shell: bash | |
run: ./generate_sitemap_docker.sh commit |