Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions .github/workflows/trigger-docs-pr-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
startsWith(github.event.comment.body, '/docs-review')
uses: ./.github/workflows/gh-aw-docs-pr-review.lock.yml
with:
allowed-bot-users: "github-actions[bot],copilot[bot]"
intensity: aggressive
minimum_severity: nitpick
secrets:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/trigger-duplicate-issue-detector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,7 @@ permissions:
jobs:
run:
uses: ./.github/workflows/gh-aw-duplicate-issue-detector.lock.yml
with:
allowed-bot-users: "github-actions[bot],copilot[bot]"
secrets:
COPILOT_GITHUB_TOKEN: ${{ secrets.COPILOT_GITHUB_TOKEN }}
2 changes: 2 additions & 0 deletions .github/workflows/trigger-issue-triage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,7 @@ permissions:
jobs:
run:
uses: ./.github/workflows/gh-aw-issue-triage.lock.yml
with:
allowed-bot-users: "github-actions[bot],copilot[bot]"
secrets:
COPILOT_GITHUB_TOKEN: ${{ secrets.COPILOT_GITHUB_TOKEN }}
2 changes: 2 additions & 0 deletions .github/workflows/trigger-mention-in-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,7 @@ jobs:
github.event.issue.pull_request == null &&
startsWith(github.event.comment.body, '/ai')
uses: ./.github/workflows/gh-aw-mention-in-issue.lock.yml
with:
allowed-bot-users: "github-actions[bot],copilot[bot]"
secrets:
COPILOT_GITHUB_TOKEN: ${{ secrets.COPILOT_GITHUB_TOKEN }}
2 changes: 2 additions & 0 deletions .github/workflows/trigger-mention-in-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,7 @@ jobs:
startsWith(github.event.comment.body, '/ai') &&
(github.event.issue.pull_request != null || github.event_name == 'pull_request_review_comment')
uses: ./.github/workflows/gh-aw-mention-in-pr.lock.yml
with:
allowed-bot-users: "github-actions[bot],copilot[bot]"
secrets:
COPILOT_GITHUB_TOKEN: ${{ secrets.COPILOT_GITHUB_TOKEN }}
2 changes: 2 additions & 0 deletions .github/workflows/trigger-plan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,7 @@ jobs:
github.event.issue.pull_request == null &&
startsWith(github.event.comment.body, '/plan')
uses: ./.github/workflows/gh-aw-plan.lock.yml
with:
allowed-bot-users: "github-actions[bot],copilot[bot]"
secrets:
COPILOT_GITHUB_TOKEN: ${{ secrets.COPILOT_GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions .github/workflows/trigger-pr-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
!contains(github.event.pull_request.labels.*.name, 'skip-auto-pr-review')
uses: ./.github/workflows/gh-aw-pr-review.lock.yml
with:
allowed-bot-users: "github-actions[bot],copilot[bot]"
intensity: aggressive
minimum_severity: nitpick
secrets:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/trigger-update-pr-body.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
if: github.event.pull_request.draft == false && !contains(github.event.pull_request.labels.*.name, 'skip-pr-body-update')
uses: ./.github/workflows/gh-aw-update-pr-body.lock.yml
with:
allowed-bot-users: "github-actions[bot],copilot[bot]"
edit-accuracy: high
edit-completeness: high
edit-format: high
Expand Down
1 change: 1 addition & 0 deletions gh-agent-workflows/docs-pr-review/dogfood-with.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
allowed-bot-users: "github-actions[bot],copilot[bot]"
intensity: aggressive
minimum_severity: nitpick
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
allowed-bot-users: "github-actions[bot],copilot[bot]"
1 change: 1 addition & 0 deletions gh-agent-workflows/issue-triage/dogfood-with.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
allowed-bot-users: "github-actions[bot],copilot[bot]"
1 change: 1 addition & 0 deletions gh-agent-workflows/mention-in-issue/dogfood-with.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
allowed-bot-users: "github-actions[bot],copilot[bot]"
1 change: 1 addition & 0 deletions gh-agent-workflows/mention-in-pr/dogfood-with.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
allowed-bot-users: "github-actions[bot],copilot[bot]"
1 change: 1 addition & 0 deletions gh-agent-workflows/plan/dogfood-with.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
allowed-bot-users: "github-actions[bot],copilot[bot]"
1 change: 1 addition & 0 deletions gh-agent-workflows/pr-review/dogfood-with.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
allowed-bot-users: "github-actions[bot],copilot[bot]"
intensity: aggressive
minimum_severity: nitpick
1 change: 1 addition & 0 deletions gh-agent-workflows/update-pr-body/dogfood-with.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
allowed-bot-users: "github-actions[bot],copilot[bot]"
edit-accuracy: high
edit-completeness: high
edit-format: high
Expand Down
Loading