forked from OAI/OpenAPI-Specification
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add agenda workflow/template (OAI#2571)
Signed-off-by: Mike Ralphson <[email protected]>
- Loading branch information
1 parent
27f6fc6
commit 183ba43
Showing
2 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
**NOTE: This meeting is on Thursday at 9am - 10am PT** | ||
|
||
Zoom Meeting link: [https://zoom.us/j/975841675](https://zoom.us/j/975841675?pwd=SUh4MjRLaEFKNlI3RElpWTdhRDVVUT09). Dial-in passcode: 763054 | ||
|
||
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. | ||
|
||
**Please submit comments below for topics or proposals that you wish to present in the TDC meeting** | ||
|
||
The agenda backlog is currently maintained in issue #2482 | ||
|
||
| Topic | Owner | Decision/NextStep | | ||
|-------|---------|---------| | ||
| | | | | ||
AOB (see below) | TDC | | | ||
New issues / PRs labelled [review](https://github.com/OAI/OpenAPI-Specification/labels/review) | @OAI/triage | | | ||
[New issues](https://github.com/search?q=repo%3Aoai%2Fopenapi-specification+is%3Aissue+comments%3A0+no%3Alabel+is%3Aopen) without response yet | @OAI/triage | | | ||
|
||
|
||
/cc @OAI/tsc Please suggest items for inclusion |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: agenda | ||
|
||
# author: @MikeRalphson | ||
# issue: various | ||
|
||
# | ||
# This workflow creates the agenda issue each week. It runs on a cron every | ||
# Monday morning, raising an issue for the following Thursday. | ||
# It can also be run manually, in case GitHub Actions has a failure. | ||
# | ||
|
||
on: | ||
schedule: | ||
- cron: '0 9 * * 2' | ||
workflow_dispatch: {} | ||
|
||
jobs: | ||
agenda: | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 # checkout repo content | ||
|
||
- name: Create agenda issue | ||
run: gh issue create -l Housekeeping -t "Open Community (TDC) Meeting, `date --date='next Thu' +'%A %d %B %Y'`" -F .github/templates/agenda.md | ||
|