Skip to content

Commit

Permalink
Automatically open an issue for Blackjax meetings
Browse files Browse the repository at this point in the history
  • Loading branch information
rlouf committed Jan 5, 2023
1 parent 25a1e28 commit 83616cc
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/ISSUE_TEMPLATE/meeting.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
name: Blackjax Meeting
about: Blackjax public meeting
title: '👋 Blackjax Meeting - {{ MONTH }}'
labels: meeting
assignees: ''
---

Hello! This is an issue to track the next Blackjax meeting. Here's some relevant information:

- **Date**: Paris time at **5:00PM on the FIRST Friday of the month** (or the day before depending on your timezone).
- [**Google Calendar Link**](https://calendar.google.com/calendar/u/0?cid=MDVlMzVkODQyYzJmZDc1YjkxZjFmNTExYWJlNmVjYzhiYjM2NDk3OWYxMTFjOWVkNzhkYzliN2Y3MDk3YTc0M0Bncm91cC5jYWxlbmRhci5nb29nbGUuY29t).
- [**Video Link**](meet.google.com/ack-uozu-xww)

These meetings are public and can be attended by anyone. If you'd like to discuss something at the meeting, we kindly ask you to comment on this issue beforehand.
18 changes: 18 additions & 0 deletions .github/workflows/schedule-meeting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Open a Meeting issue the 25th day of the month.
# Meetings happen on the first Friday of the month
name: Open a meeting issue
on:
schedule:
- cron: '0 0 20 * *'
workflow_dispatch:

jobs:
create-meeting-issue:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: JasonEtco/create-an-issue@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
filename: .github/ISSUE_TEMPLATE/team-meeting.md

0 comments on commit 83616cc

Please sign in to comment.