Skip to content

Commit a295d9a

Browse files
authored
feat: add agenda workflow/template (OAI#2571)
Signed-off-by: Mike Ralphson <[email protected]>
1 parent 1adfe30 commit a295d9a

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

.github/templates/agenda.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
**NOTE: This meeting is on Thursday at 9am - 10am PT**
2+
3+
Zoom Meeting link: [https://zoom.us/j/975841675](https://zoom.us/j/975841675?pwd=SUh4MjRLaEFKNlI3RElpWTdhRDVVUT09). Dial-in passcode: 763054
4+
5+
In order to give some more visibility into the topics we cover in the TDC meetings here is the planned agenda for the next meeting. Hopefully this will allow people to plan to attend meetings for topics that they have an interest in. And for folks who cannot attend they can comment on this issue prior to the meeting. Feel free to suggest other potential agenda topics.
6+
7+
**Please submit comments below for topics or proposals that you wish to present in the TDC meeting**
8+
9+
The agenda backlog is currently maintained in issue #2482
10+
11+
| Topic | Owner | Decision/NextStep |
12+
|-------|---------|---------|
13+
| | | |
14+
AOB (see below) | TDC | |
15+
New issues / PRs labelled [review](https://github.com/OAI/OpenAPI-Specification/labels/review) | @OAI/triage | |
16+
[New issues](https://github.com/search?q=repo%3Aoai%2Fopenapi-specification+is%3Aissue+comments%3A0+no%3Alabel+is%3Aopen) without response yet | @OAI/triage | |
17+
18+
19+
/cc @OAI/tsc Please suggest items for inclusion

.github/workflows/agenda.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: agenda
2+
3+
# author: @MikeRalphson
4+
# issue: various
5+
6+
#
7+
# This workflow creates the agenda issue each week. It runs on a cron every
8+
# Monday morning, raising an issue for the following Thursday.
9+
# It can also be run manually, in case GitHub Actions has a failure.
10+
#
11+
12+
on:
13+
schedule:
14+
- cron: '0 9 * * 2'
15+
workflow_dispatch: {}
16+
17+
jobs:
18+
agenda:
19+
env:
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
22+
runs-on: ubuntu-latest
23+
24+
steps:
25+
- uses: actions/checkout@v1 # checkout repo content
26+
27+
- name: Create agenda issue
28+
run: gh issue create -l Housekeeping -t "Open Community (TDC) Meeting, `date --date='next Thu' +'%A %d %B %Y'`" -F .github/templates/agenda.md
29+

0 commit comments

Comments
 (0)