Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Community Meeting notification workflow #120

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .github/workflows/Agenda.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Weekly Team Sync
on:
schedule:
- cron: 00 17 * * 1

jobs:
create_issue:
name: Create team sync issue
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Today's Date
run: echo "TODAY=$(date '+%B %d, %Y')" >> $GITHUB_ENV
- name: Create team sync issue
uses: imjohnbo/issue-bot@v3

with:
assignees: ""
labels: "community, meeting"

title: " ${{env.TODAY}} Community Meeting "
AmanSarraf marked this conversation as resolved.
Show resolved Hide resolved

body: |
### Agenda

- [ ] Check-ins
- [ ] Discussion points
- Please add a topic in this thread and add a link to the GitHub issue associated with the topic.
- Please make sure you give folks enough time to review/discuss the topic offline on GitHub before coming into the meeting
- (optional) Paste the image of an animal 😸

### Discussion Points
Add things to discuss below

pinned: true
close-previous: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}