-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #73 from Jblew/main
Support for ProjectsV2, closes #72
- Loading branch information
Showing
6 changed files
with
232 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# | ||
# Daily standup, powered by imjohnbo/issue-bot | ||
# | ||
name: Daily Standup Projects V2 | ||
on: | ||
schedule: | ||
# Every day at noon | ||
- cron: 0 12 * * * | ||
|
||
jobs: | ||
daily_standup: | ||
name: Daily Standup Projects V2 | ||
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 | ||
project-v2-path: users/jblew/projects/2 | ||
token: ${{ secrets.PAT }} # for example, a personal access token with `project` scope |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters