Skip to content

.github/workflows/Reminder.yml #4

.github/workflows/Reminder.yml

.github/workflows/Reminder.yml #4

Workflow file for this run

on:
schedule:
- cron: '0 0 */2 * *' # Runs every two weeks
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 }}