Cron job purge data #82
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: Cron job purge data | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 14 1 * *" | |
jobs: | |
purge_file: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # 'write' access to repository contents | |
pull-requests: write # 'write' access to pull requests | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v4 | |
name: Install pnpm | |
with: | |
version: 9 | |
run_install: false | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Run purge | |
run: pnpm run purge | |
- name: Commit changes | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "mazipan" | |
git config --global --add safe.directory /github/workspace | |
git add -A | |
git commit -m "🔥 CHORE: purge all data" | |
- name: GitHub Push | |
uses: ad-m/[email protected] | |
with: | |
force: true | |
directory: "." | |
github_token: ${{ secrets.GIT_TOKEN }} |