-
Notifications
You must be signed in to change notification settings - Fork 41
28 lines (28 loc) · 1009 Bytes
/
agenda.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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@v3
- name: Create Community Agenda
run: |
bash agenda.sh ${{ inputs.date }} ${{ inputs.livestream_url }}
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
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