Open a meeting issue #23
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
# Open a Meeting issue the 25th day of the month. | |
# Meetings happen on the first Friday of the month | |
name: Open a meeting issue | |
on: | |
schedule: | |
- cron: '0 0 20 * *' | |
workflow_dispatch: | |
jobs: | |
create-meeting-issue: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: JasonEtco/create-an-issue@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
filename: .github/ISSUE_TEMPLATE/meeting.md |