-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdaily-issue-summary.yml
More file actions
39 lines (38 loc) · 1.46 KB
/
daily-issue-summary.yml
File metadata and controls
39 lines (38 loc) · 1.46 KB
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
# Template workflow generated from examples/daily-issue-summary.yml.
# Copy this file into .github/workflows/ in your own repository and customize as needed.
# Do not edit this file in-place in this repo; instead, edit the source example and run:
# npm run gen-workflows
# ======================================================================================
# Workflow: Daily Issue Summary
# ======================================================================================
# Usage:
# - Runs automatically on a schedule (every day at 9:00 UTC).
# - Fetches issues created in the last 24 hours.
#
# Setup:
# - Ensure WARP_API_KEY is set in Repository Secrets.
# - Ensure SLACK_WEBHOOK_URL is set in Repository Secrets to receive the report.
#
# Expected Output:
# - A Slack message containing a categorized summary of new issues (Bugs, Features, etc.).
#
# When to use:
# - Use this to keep your team aligned on incoming issues without manually checking GitHub.
# ======================================================================================
name: Daily Issue Summary
on:
schedule:
- cron: 0 9 * * *
workflow_dispatch: null
jobs:
summarize_issues:
uses: warpdotdev/warp-agent-action/.github/workflows/daily-issue-summary.yml@v1
with:
# These inputs are all optional
profile: ''
model: ''
name: ''
mcp: ''
secrets:
WARP_API_KEY: ${{ secrets.WARP_API_KEY }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}