Create Meeting Issue #71
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: Create Meeting Issue | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '30 15 * * WED' | |
jobs: | |
meeting-issue: | |
name: Create FCOS Meeting Issue | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
id: setup-node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: npm | |
- name: Install Dependencies | |
id: npm-ci | |
run: npm ci | |
- name: Local Action | |
id: meeting-issue | |
uses: ./ | |
with: | |
issueTitle: 'FCOS Meeting Checklist' | |
rootURLMeetingLogs: 'https://meetbot-raw.fedoraproject.org/meeting-1_matrix_fedoraproject-org/' | |
trackingRepo: 'coreos/fedora-coreos-tracker' |