-
Notifications
You must be signed in to change notification settings - Fork 61
28 lines (28 loc) · 1.08 KB
/
agenda.yml
File metadata and controls
28 lines (28 loc) · 1.08 KB
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@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