Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
151 changes: 151 additions & 0 deletions .github/workflows/daily-issues-report.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions .github/workflows/daily-issues-report.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
---
description: Daily report analyzing repository issues with clustering, metrics, and trend charts
on:
schedule: daily
workflow_dispatch:
on: daily
permissions:
contents: read
actions: read
Expand Down
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,8 @@ GitHub Agentic Workflows transforms natural language markdown files into GitHub

```markdown
---
on:
schedule:
- cron: "0 6 * * *"

on: daily
permissions: read

safe-outputs:
create-discussion:
---
Expand Down
10 changes: 10 additions & 0 deletions docs/src/content/docs/examples/scheduled.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@ Scheduled workflows run automatically at specified times using cron expressions.

## Example Schedule Triggers

**Recommended: Short fuzzy syntax**
```yaml
on: daily # Automatically scattered to different time
on: weekly # Scattered across days and times
on: weekly on monday # Scattered time on specific day
```

**Traditional cron syntax**
```yaml
on:
schedule:
Expand All @@ -29,6 +37,8 @@ on:
- cron: "0 */6 * * *" # Every 6 hours
```

See the [Triggers reference](/gh-aw/reference/triggers/#scheduled-triggers-schedule) for complete syntax options.

## Quick Start

Add a scheduled workflow to your repository:
Expand Down