Skip to content

Commit

Permalink
Temporarily disable periodic update
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielKerekes committed Aug 22, 2024
1 parent b7511b1 commit a205be3
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions .github/workflows/periodic-update.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
name: Periodic Update
on:
schedule:
# Run every second day at 1:00 UTC
- cron: '0 1 */2 * *'
workflow_dispatch:
jobs:
periodic-auto-update:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v2
# name: Periodic Update
# on:
# schedule:
# # Run every second day at 1:00 UTC
# - cron: '0 1 */2 * *'
# workflow_dispatch:
# jobs:
# periodic-auto-update:
# runs-on: ubuntu-latest
# permissions:
# # Give the default GITHUB_TOKEN write permission to commit and push the
# # added or changed files to the repository.
# contents: write
# steps:
# - uses: actions/checkout@v2

- uses: actions/setup-python@v2
with:
python-version: '3.11'
cache: 'pip'
- run: pip install -r requirements.txt
# - uses: actions/setup-python@v2
# with:
# python-version: '3.11'
# cache: 'pip'
# - run: pip install -r requirements.txt

- name: Run script that collects tokens
run: |
python3 aggregate_tokens.py && python3 generate_readme.py
# - name: Run script that collects tokens
# run: |
# python3 aggregate_tokens.py && python3 generate_readme.py

- name: Commit changes
if: success()
uses: stefanzweifel/git-auto-commit-action@v5.0.0
# - name: Commit changes
# if: success()
# uses: stefanzweifel/git-auto-commit-action@v5.0.0

0 comments on commit a205be3

Please sign in to comment.