Schedule Meetings #235
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: Schedule Meetings | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
meeting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Technical Committee | |
uses: 'pkgjs/meet@v0' | |
with: | |
issueTitle: '<%= date.toFormat("yyyy-MM-dd") %> Express TC Meeting' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
orgs: expressjs,pillarjs,jshttp | |
agendaLabel: 'tc agenda' | |
meetingLabels: 'meeting' | |
# https://github.com/expressjs/discussions/issues/195#issuecomment-1973732769 | |
# Starting on 2024-03-18 at 8pm UTC (2024-03-18T21:00:00.0Z) with a period of 2 weeks (P2W) | |
schedules: '2024-03-18T20:00:00.0Z/P2W' | |
createWithin: 'P1W' | |
issueTemplate: 'meeting.md' | |
- name: Working Session | |
uses: 'pkgjs/meet@v0' | |
with: | |
issueTitle: '<%= date.toFormat("yyyy-MM-dd") %> Express Working Session' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
orgs: expressjs,pillarjs,jshttp | |
agendaLabel: 'top priority' | |
meetingLabels: 'meeting' | |
# Converting the second time slot to a "working session" | |
# https://github.com/expressjs/discussions/issues/195#issuecomment-1973732769 | |
# Starting on 2024-03-27 at 8pm UTC (2024-03-27T21:00:00.0Z) with a period of 2 weeks (P2W) | |
schedules: '2024-03-27T20:00:00.0Z/P2W' | |
createWithin: 'P1W' | |
issueTemplate: 'meeting.md' |