Skip to content

Commit 0152e34

Browse files
committed
Quick/repeatable agenda creation
1 parent 5d5927a commit 0152e34

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed

.github/templates/agenda.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
This discussion is about a meeting of the OpenAPI Overlays group.
2+
We meet on alternate Tuesdays at 08:00 Pacific time, and this is a public meeting.
3+
4+
5+
6+
Meeting link:
7+
8+
9+
10+
This meeting is covered by the [OpenAPI Initiative Code of Conduct](https://github.com/OAI/Arazzo-Specification/?tab=coc-ov-file#readme).
11+
12+
13+
14+
Add comments to this discussion to add items to the agenda for the meeting.
15+

.github/workflows/agenda.yaml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Create meeting template
2+
3+
on:
4+
workflow_dispatch: {}
5+
6+
jobs:
7+
create-discussion:
8+
permissions:
9+
discussions: write
10+
runs-on: ubuntu-22.04
11+
steps:
12+
- uses: actions/checkout@v4
13+
- name: Get agenda text from template
14+
id: get-agenda
15+
run: |
16+
echo 'AGENDA<<EOF' >> $GITHUB_ENV
17+
cat .github/templates/agenda.md >> $GITHUB_ENV
18+
echo 'EOF' >> $GITHUB_ENV
19+
- name: Create discussion with agenda
20+
id: create-repository-discussion
21+
uses: octokit/[email protected]
22+
env:
23+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24+
with:
25+
variables:
26+
|
27+
body: "${{ env.AGENDA }}"
28+
title: "Overlays Meeting"
29+
repositoryId: 'R_kgDONSGyRw'
30+
categoryId: 'DIC_kwDONSGyR84CkcBW'
31+
query: |
32+
mutation CreateDiscussionMutation ($title: String!, $body: String!, $repositoryId: ID!, $categoryId: ID!) {
33+
createDiscussion(input: { title: $title, body: $body, repositoryId: $repositoryId, categoryId: $categoryId }) {
34+
discussion {
35+
title
36+
}
37+
}
38+
}
39+

0 commit comments

Comments
 (0)