Fetch all tutorials #1
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: Fetch all tutorials | |
on: | |
workflow_dispatch: | |
schedule: | |
#Every Sunday at 8:00 am | |
- cron: "0 8 * * 0" | |
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | |
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | |
concurrency: | |
group: "tutorials" | |
cancel-in-progress: false | |
permissions: | |
contents: write | |
jobs: | |
fetch-all-tutorials: | |
runs-on: ubuntu-20.04 | |
environment: fetch-tutorials | |
name: Fetch all tutorials | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install requirement | |
run: python -m pip install -r requirements.txt | |
- name: Run script #needs PAT to access other repos | |
run: | | |
bash ./bin/extract_all_tutorials.sh | |
env: | |
PLAUSIBLE_API_KEY: ${{ secrets.PLAUSIBLE_API_TOKEN }} | |
- name: Commit all tools | |
# add or commit any changes in results if there was a change, merge with main and push as bot | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
git pull --no-rebase -s recursive -X ours | |
git add results | |
git status | |
git diff --quiet && git diff --staged --quiet || (git commit -m "fetch all tutorials bot - step fetch") | |
git push |