forked from redhat-cop/infra.aap_configuration
-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (45 loc) · 2.15 KB
/
office-hours-issue.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
---
# https://github.com/marketplace/actions/issues-helper
name: Close and create new office hours issue
on:
schedule:
- cron: "1 0 8 * *"
jobs:
check-need-info:
runs-on: ubuntu-latest
steps:
- name: close-issues
uses: actions-cool/issues-helper@v3
with:
actions: 'close-issues'
token: ${{ secrets.GITHUB_TOKEN }}
labels: 'office_hours'
close-reason: "completed"
create-issue:
runs-on: ubuntu-latest
steps:
- name: Create issue
uses: actions-cool/issues-helper@v3
with:
actions: 'create-issue'
token: ${{ secrets.GITHUB_TOKEN }}
title: 'AAP Config as Code Office Hours Agenda'
body: |
# AAP Config as Code Office Hours
## What
After attending other Office Hours of various groups, we decided to host one of our own.
The goal is to host a regular time for the AAP Config as Code contributors to be available for your folks in the Community, so we are happy to announce a new regular video meeting.
## Where & When
The meeting will be held on the first Thursday of the month at [1300 UTC](https://dateful.com/time-zone-converter?t=13:00&tz=UTC)
- [Google Meet](https://meet.google.com/npj-fyzv-oyo)
- Via Phone PIN: 621 302 239 [Guide](https://support.google.com/meet/answer/9518557)
This meeting is held the first Thursday of the month, at [1300 UTC](https://dateful.com/time-zone-converter?t=13:00&tz=UTC)
## How
Add one topic per comment in this GitHub issue
If you don't have a GitHub account, jump on [#aap_config_as_code:ansible.com](https://matrix.to/#/#aap_config_as_code:ansible.com) on Matrix and we can add the topic for you
## Talk with us
As well as the monthly video meeting you can join the Community (inc development team) on Matrix Chat.
- Matrix: [#aap_config_as_code:ansible.com](https://matrix.to/#/#aap_config_as_code:ansible.com) (recomended)
See you soon!
labels: 'office_hours,help wanted,question'
...