π Cleanup session files #408
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: π Cleanup session files | |
# Hitting the API checks for inactive sessions and cleans up any orphaned files. | |
# This action runs on an hourly schedule to make sure this cleanup happens at least | |
# once an hour. | |
on: | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
- cron: '0 * * * *' | |
jobs: | |
cleanup: | |
name: π Cleanup | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cleanup | |
run: curl https://seroviz.seroanalytics.org/api/ |