-
Notifications
You must be signed in to change notification settings - Fork 22
68 lines (59 loc) · 2.12 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: Standards Collab Space
on:
workflow_dispatch:
jobs:
create_issue:
name: Create agenda issue
runs-on: ubuntu-latest
permissions: write-all
steps:
- name: Create agenda issue
run: |
if [[ $CLOSE_PREVIOUS == true ]]; then
previous_issue_number=$(gh issue list \
--label "$LABELS" \
--json number \
--jq '.[0].number')
if [[ -n $previous_issue_number ]]; then
gh issue close "$previous_issue_number"
gh issue unpin "$previous_issue_number"
fi
fi
meeting_date=`date +"%Y-%m-%d" -d "next Tuesday"`
new_issue_url=$(gh issue create \
--title "$meeting_date OpenJS Foundation Collaboration Space Meeting" \
--assignee "$ASSIGNEES" \
--label "$LABELS" \
--body "$BODY")
if [[ $PINNED == true ]]; then
gh issue pin "$new_issue_url"
fi
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
ASSIGNEES: jorydotcom
LABELS: standards-agenda
BODY: |
## Meeting notices
**Reminder - Meeting is recorded**
## Agenda
- [ ] OpenJS Announcements, Reminders & FYIs
- [ ] Liaison Reports
- [ ] Review Open Issues and PRs
- [ ] Any Other Business
### OpenJS Announcements, Reminders & FYIs
- [ ] Add any project shares, news, FYIs or reminders to share with the community
### Liaison Reports
- [ ] TC 39
- [ ] TC 53
- [ ] W3C AC
- [ ] W3C TAG
- [ ] OSI
- [ ] OPA
## [Review Open Issues & PRs](https://github.com/openjs-foundation/standards/labels/standards-agenda)
- [ ] Add issues that need review, assignment, triage, or other clarification
## AOB
- [ ] Add any other items
## Adjournment
PINNED: false
CLOSE_PREVIOUS: false