Skip to content

Commit 461a0ef

Browse files
committed
fix agentics
1 parent dd4d9be commit 461a0ef

7 files changed

Lines changed: 23 additions & 17 deletions

File tree

workflows/daily-dependency-updates.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ safe-outputs:
1717
title-prefix: "${{ github.workflow }}"
1818

1919
# Configure bash build commands here, or in .github/workflows/agentics/daily-dependency-updates.config.md or .github/workflows/agentics/build-tools.md
20-
# For YOLO mode, uncomment
21-
# tools:
22-
# bash: [ ":*" ]
20+
# By default this workflow allows all bash commands within the confine of Github Actions VM
21+
tools:
22+
bash: [ ":*" ]
2323

2424
timeout_minutes: 15
2525

workflows/daily-perf-improver.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,18 @@ safe-outputs:
1717
title-prefix: "${{ github.workflow }}"
1818
max: 5
1919
add-issue-comment:
20-
max: 5
20+
target: "*" # can add a comment to any one single issue or pull request
2121
create-pull-request:
2222
draft: true
2323

2424
tools:
2525
web-fetch:
2626
web-search:
27-
# Configure bash build commands here, or in .github/workflows/agentics/daily-dependency-updates.config.md or .github/workflows/agentics/build-tools.md
28-
# For YOLO mode, uncomment
29-
# Bash: [ ":*" ]
27+
28+
# Configure bash build commands here, or in .github/workflows/agentics/daily-dependency-updates.config.md or .github/workflows/agentics/build-tools.md
29+
#
30+
# By default this workflow allows all bash commands within the confine of Github Actions VM
31+
bash: [ ":*" ]
3032

3133
steps:
3234
- name: Checkout repository

workflows/daily-progress.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ safe-outputs:
1515
title-prefix: "${{ github.workflow }}"
1616
max: 3
1717
add-issue-comment:
18+
target: "*" # all issues and PRs
1819
max: 3
1920
create-pull-request:
2021
draft: true
@@ -29,8 +30,8 @@ tools:
2930
#
3031
# Run `gh aw compile` after editing to recompile the workflow.
3132
#
32-
# For YOLO mode, uncomment the following line
33-
# bash: [":*]
33+
# By default this workflow allows all bash commands within the confine of Github Actions VM
34+
bash: [ ":*" ]
3435

3536
steps:
3637
- name: Checkout repository

workflows/daily-qa.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ safe-outputs:
1717
create-issue:
1818
title-prefix: "${{ github.workflow }}"
1919
add-issue-comment:
20+
target: "*" # all issues and PRs
2021
max: 5
2122
create-pull-request:
2223
draft: true
@@ -31,8 +32,8 @@ tools:
3132
#
3233
# Run `gh aw compile` after editing to recompile the workflow.
3334
#
34-
# For YOLO mode, uncomment the following line
35-
# bash: [ ":* ]
35+
# By default this workflow allows all bash commands within the confine of Github Actions VM
36+
bash: [ ":*" ]
3637

3738
---
3839

workflows/daily-test-improver.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ safe-outputs:
1818
update-issue: # needed to update the report issue if it already exists
1919
target: "*" # can update any one single issue
2020
body: # can update the issue body only
21+
add-issue-comment:
22+
target: "*" # can add a comment to any one single issue or pull request
2123
create-pull-request: # needed to create results pull request
2224
draft: true
2325

@@ -31,8 +33,8 @@ tools:
3133
#
3234
# Run `gh aw compile` after editing to recompile the workflow.
3335
#
34-
# For YOLO mode, uncomment the following line
35-
# bash: [ ":* ]
36+
# By default this workflow allows all bash commands within the confine of Github Actions VM
37+
bash: [ ":*" ]
3638

3739
steps:
3840
- name: Checkout repository

workflows/pr-fix.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ tools:
2525
#
2626
# Run `gh aw compile` after editing to recompile the workflow.
2727
#
28-
# For YOLO mode, uncomment the following line
29-
# bash: [ ":* ]
28+
# By default this workflow allows all bash commands within the confine of Github Actions VM
29+
bash: [ ":*" ]
3030

3131
timeout_minutes: 20
3232

workflows/update-docs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ tools:
2323
#
2424
# Run `gh aw compile` after editing to recompile the workflow.
2525
#
26-
# For YOLO mode, uncomment the following line
27-
# bash: [ ":* ]
26+
# By default this workflow allows all bash commands within the confine of Github Actions VM
27+
bash: [ ":*" ]
2828

2929
timeout_minutes: 15
3030
---

0 commit comments

Comments
 (0)