Skip to content

.github/workflows/Reminder.yml #14

.github/workflows/Reminder.yml

.github/workflows/Reminder.yml #14

Workflow file for this run

on:
schedule:
- cron: '0 7 1,15 * *' # Runs every 1st & 15th of each month at 7 am.
workflow_dispatch: # Allows manual triggering of the workflowname: Create an issue on push
permissions:
contents: read
issues: write
jobs:
stuff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: JasonEtco/create-an-issue@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}