Skip to content
Merged
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
70 changes: 65 additions & 5 deletions .github/workflows/fullsend.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# lint-workflow-size: max-lines=535
# fullsend shim workflow
# Routes events to agent workflows in .fullsend via the dispatch.yml workflow.
#
Expand Down Expand Up @@ -28,7 +29,7 @@ permissions:

on:
issues:
types: [labeled]
types: [labeled, opened, edited]
issue_comment:
types: [created]
pull_request_target:
Expand All @@ -45,7 +46,9 @@ jobs:
group: triage-${{ github.event.issue.number || github.event.pull_request.number }}
cancel-in-progress: true
if: >-
github.event_name == 'issue_comment' && (
(github.event_name == 'issues'
&& (github.event.action == 'opened' || github.event.action == 'edited')) ||
(github.event_name == 'issue_comment' && (
github.event.comment.body == '/triage' ||
startsWith(github.event.comment.body, '/triage ') ||
startsWith(github.event.comment.body, format('{0}{1}', '/triage', fromJSON('"\n"'))) ||
Expand All @@ -56,7 +59,7 @@ jobs:
contains(toJSON(github.event.issue.labels.*.name), 'needs-info') &&
!contains(toJSON(github.event.issue.labels.*.name), 'type/feature')
)
)
))
steps:
- name: Build minimal payload
id: payload
Expand Down Expand Up @@ -399,6 +402,61 @@ jobs:
-f source_repo="$SOURCE_REPO" \
-f event_payload="$EVENT_PAYLOAD"

dispatch-prioritize:
runs-on: ubuntu-latest
outputs:
agent: ${{ steps.dispatch.outputs.agent }}
concurrency:
group: prioritize-${{ github.event.issue.number }}
cancel-in-progress: true
if: >-
github.event_name == 'issue_comment'
&& !github.event.issue.pull_request
&& github.event.comment.user.type != 'Bot'
&& (
github.event.comment.body == '/prioritize'
|| startsWith(github.event.comment.body, '/prioritize ')
|| startsWith(github.event.comment.body, format('{0}{1}', '/prioritize', fromJSON('"\n"')))
)
&& (
github.event.comment.author_association == 'OWNER'
|| github.event.comment.author_association == 'MEMBER'
|| github.event.comment.author_association == 'COLLABORATOR'
)
steps:
- name: Build minimal payload
id: payload
env:
ISSUE_NUMBER: ${{ github.event.issue.number }}
ISSUE_HTML_URL: ${{ github.event.issue.html_url }}
COMMENT_BODY: ${{ github.event.comment.body }}
run: |
set -euo pipefail
PAYLOAD=$(jq -cn \
--arg in "${ISSUE_NUMBER}" \
--arg iu "${ISSUE_HTML_URL}" \
--arg cb "${COMMENT_BODY:-}" \
'{issue: {number: ($in | tonumber), html_url: $iu},
comment: {body: $cb}}')
echo "json=$PAYLOAD" >> "$GITHUB_OUTPUT"
- name: Dispatch prioritize stage
id: dispatch
env:
GH_TOKEN: ${{ secrets.FULLSEND_DISPATCH_TOKEN }}
EVENT_PAYLOAD: ${{ steps.payload.outputs.json }}
EVENT_TYPE: ${{ github.event_name }}
SOURCE_REPO: ${{ github.repository }}
DISPATCH_REPO: ${{ github.repository_owner }}/.fullsend
run: |
DISPATCH_URL=$(gh workflow run dispatch.yml \
--repo "$DISPATCH_REPO" \
-f stage=prioritize \
-f event_type="$EVENT_TYPE" \
-f source_repo="$SOURCE_REPO" \
-f event_payload="$EVENT_PAYLOAD")
echo "::notice::Dispatched prioritize → ${DISPATCH_URL}"
echo "agent=prioritize" >> "$GITHUB_OUTPUT"

dispatch-stop-fix:
runs-on: ubuntu-latest
if: >-
Expand Down Expand Up @@ -426,7 +484,7 @@ jobs:
run: |
gh label create "fullsend-no-fix" --repo "$REPO" \
--description "Skip bot-triggered fix agent runs" --color "FBCA04" \
--force 2>/dev/null || true
2>/dev/null || true
gh pr edit "$PR_NUMBER" --repo "$REPO" \
--add-label "fullsend-no-fix"
gh pr comment "$PR_NUMBER" --repo "$REPO" \
Expand All @@ -445,6 +503,7 @@ jobs:
dispatch-review,
dispatch-fix-bot,
dispatch-fix-human,
dispatch-prioritize,
]
env:
GH_TOKEN: ${{ github.token }}
Expand All @@ -456,7 +515,8 @@ jobs:
|| needs.dispatch-code.outputs.agent
|| needs.dispatch-review.outputs.agent
|| needs.dispatch-fix-bot.outputs.agent
|| needs.dispatch-fix-human.outputs.agent }}
|| needs.dispatch-fix-human.outputs.agent
|| needs.dispatch-prioritize.outputs.agent }}
SHIM_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
ITEM_NUMBER: ${{ github.event.issue.number || github.event.pull_request.number }}
run: |
Expand Down
Loading