Skip to content

Commit 9680018

Browse files
authored
Merge pull request #3220 from MicrosoftEdge/IssueDailySummaryAction
Add new workflow of daily issue summary
2 parents 5075495 + 0322d62 commit 9680018

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/dailySummary.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: get issue summary of yesterday
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: '0 1 * * *'
7+
8+
jobs:
9+
alert:
10+
runs-on: ubuntu-latest
11+
name: get summary
12+
steps:
13+
- uses: shangminx/Auto-Digest@main
14+
id: getsummary
15+
- uses: plantree/github-actions-issue-notify-teams@main
16+
with:
17+
type: daily-report
18+
message: ${{ steps.getsummary.outputs.dailysummary }}
19+
webhook: ${{ secrets.WEBHOOK }}

0 commit comments

Comments
 (0)