Create Community Meeting Agenda #141
This file contains hidden or 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 Community Meeting Agenda | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| date: | |
| description: "Date of next community meeting, in the form of YYYY-MM-DD" | |
| required: true | |
| type: string | |
| livestream_url: | |
| description: "URL of YouTube livestream for community meeting" | |
| required: true | |
| type: string | |
| jobs: | |
| create_agenda: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Create Community Agenda | |
| run: | | |
| bash agenda.sh ${{ inputs.date }} ${{ inputs.livestream_url }} | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8 | |
| with: | |
| commit-message: added community meeting agenda for ${{ inputs.date }} | |
| title: Community Agenda ${{ inputs.date }} | |
| body: This is the community meeting agenda for ${{ inputs.date }}. Agenda items are forthcoming because bleep bloop I am a bot. | |
| branch: community/${{ inputs.date }} | |
| signoff: true |