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
Copy file name to clipboardExpand all lines: workflows/agentics/shared/gh-extra-pr-tools.md
+1-4Lines changed: 1 addition & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,14 +7,11 @@ tools:
7
7
- "git branch:*"
8
8
- "git add:*"
9
9
- "git commit:*"
10
-
- "git push:*"
11
-
- "gh pr create:*"
12
10
---
13
11
14
12
## Creating and Updating Pull Requests
15
13
16
-
To create a branch, add changes to your branch and push code to GitHub, use Bash `git branch...``git add ...`, `git commit ...`, `git push ...` etc.
14
+
To create a branch, add changes to your branch, use Bash `git branch...``git add ...`, `git commit ...` etc.
17
15
18
16
When using `git commit`, ensure you set the author name and email appropriately. Do this by using a `--author` flag with `git commit`, for example `git commit --author "${{ github.workflow }} <github-actions[bot]@users.noreply.github.com>" ...`.
19
17
20
-
To create a pull request with the changes, use Bash `gh pr create --repo ${{ github.repository }} ...`
# Run `gh aw compile` after editing to recompile the workflow.
37
35
#
38
36
# For YOLO mode, uncomment the following line
37
+
# KillBash:
38
+
# BashOutput:
39
39
# Bash:
40
40
# - ":*
41
41
@@ -71,11 +71,13 @@ Your name is ${{ github.workflow }}. Your job is to act as an agentic QA enginee
71
71
72
72
- Make sure to include a clear description of the problem, steps to reproduce it, and any relevant information that might help the team understand and fix the issue. If you create a pull request, make sure to include a clear description of the changes you made and why they are necessary.
73
73
74
-
4. Search for any previous "Daily QA Report" open issues in the repository. Read the latest one. If the status is essentially the same as the current state of the repository, then add a very brief comment to that issue saying you didn't find anything new and exit. Close all the previous open Daily QA Report issues.
74
+
4. If you find any small problems you can fix with very high confidence, create a PR for them.
75
+
76
+
5. Search for any previous "${{ github.workflow }}" open issues in the repository. Read the latest one. If the status is essentially the same as the current state of the repository, then add a very brief comment to that issue saying you didn't find anything new and exit. Close all the previous open Daily QA Report issues.
75
77
76
-
5. Create a new issue with title starting with "${{ github.workflow }}", very very briefly summarizing the problems you found and the actions you took. Use note form. Include links to any issues you created or commented on, and any pull requests you created. In a collapsed section highlight any bash commands you used, any web searches you performed, and any web pages you visited that were relevant to your work. If you tried to run bash commands but were refused permission, then include a list of those at the end of the issue.
78
+
6. Create a new issue with title starting with "${{ github.workflow }}", very very briefly summarizing the problems you found and the actions you took. Use note form. Include links to any issues you created or commented on, and any pull requests you created. In a collapsed section highlight any bash commands you used, any web searches you performed, and any web pages you visited that were relevant to your work. If you tried to run bash commands but were refused permission, then include a list of those at the end of the issue.
77
79
78
-
6. Create a file in the root directory of the repo called "workflow-complete.txt" with the text "Workflow completed successfully".
80
+
7. Create a file in the root directory of the repo called "workflow-complete.txt" with the text "Workflow completed successfully".
Copy file name to clipboardExpand all lines: workflows/daily-team-status.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,8 @@ on:
9
9
10
10
permissions: read-all
11
11
12
+
network: defaults
13
+
12
14
safe-outputs:
13
15
create-issue:
14
16
title-prefix: "${{ github.workflow }}"
@@ -26,7 +28,7 @@ tools:
26
28
27
29
# Daily Team Status
28
30
29
-
1. Search for recent "Daily Team Status" open issues in the repository. Read them to understand the context of the team and recent activity, and to avoid duplication.
31
+
1. Search for recent open issues with title "${{ github.workflow }}" in the repository. Read them to understand the context of the team and recent activity, and to avoid duplication.
30
32
31
33
2. Write an upbeat, friendly, motiviating summary of recent activity in the repo.
0 commit comments