Data download reminder #2
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
# Creates an issue from a template based on schedule | |
# See example: https://jasonet.co/posts/scheduled-actions/#jasonetcocreate-an-issue | |
name: Data download reminder | |
on: | |
schedule: | |
- cron: '0 0 15 9 *' # Runs on Sept 15 0:00 UTC | |
workflow_dispatch: | |
jobs: | |
issue: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: JasonEtco/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
filename: .github/ISSUE_TEMPLATE/data_update.md |