You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> For an overview of all available workflows, see the [main README](../README.md).
4
+
5
+
The [dependabot burner workflow](../workflows/dependabot-burner.md?plain=1) scans for open Dependabot pull requests and bundles them into issues by runtime and manifest file to reduce PR noise.
6
+
7
+
## Installation
8
+
9
+
```bash
10
+
# Install the 'gh aw' extension
11
+
gh extension install github/gh-aw
12
+
13
+
# Add the Dependabot Burner workflow to your repository
14
+
gh aw add-wizard githubnext/agentics/dependabot-burner
15
+
```
16
+
17
+
This walks you through adding the workflow to your repository. After merging the PR and syncing to main, you can start a run of this workflow immediately by running:
18
+
19
+
```bash
20
+
gh aw run dependabot-burner
21
+
```
22
+
23
+
## Configuration
24
+
25
+
This workflow requires no configuration and works out of the box. You can edit it to adjust how updates are grouped and what goes into each bundle issue.
26
+
27
+
After editing run `gh aw compile` to update the workflow and commit all changes to the default branch.
28
+
29
+
## What it reads from GitHub
30
+
31
+
- Pull requests and their metadata
32
+
- Repository contents and dependency files
33
+
34
+
## What it creates
35
+
36
+
- Creates bundle issues summarizing related Dependabot PRs
37
+
38
+
## Human in the loop
39
+
40
+
- Review bundle issues for accuracy and completeness
41
+
- Decide which PRs to merge or close based on the bundle
42
+
- Adjust bundling logic if it is too noisy or too coarse
0 commit comments