-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathstandup.yml
36 lines (31 loc) · 952 Bytes
/
standup.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
#
# Daily standup, powered by imjohnbo/issue-bot
#
name: Daily Standup
on:
schedule:
# Every day at noon
- cron: 0 12 * * *
jobs:
daily_standup:
name: Daily Standup
runs-on: ubuntu-latest
steps:
- name: Today's date
run: echo "TODAY=$(date '+%Y-%m-%d')" >> $GITHUB_ENV
# Generates and pins new standup issue, closes previous, writes linking comments, and assigns to all assignees in list
- name: New standup issue
uses: imjohnbo/issue-bot@v3
with:
assignees: "octocat, monalisa"
labels: "standup"
title: Standup
body: |-
:wave: Hi, {{#each assignees}}@{{this}}{{#unless @last}}, {{/unless}}{{/each}}!
## Standup for ${{ env.TODAY }}
1. What did you work on yesterday?
2. What are you working on today?
3. What issues are blocking you?
pinned: true
close-previous: true
linked-comments: true