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

Automatically open an issue for Blackjax meetings #440

Merged
merged 1 commit into from
Jan 6, 2023
Merged
Show file tree
Hide file tree
Changes from all 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
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**
- [**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