Skip to content
Merged
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
67 changes: 67 additions & 0 deletions .github/workflows/announce-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# Drop this into a repo at .github/workflows/announce-pr.yml to make it a town-crier producer.
#
# Setup (once per repo or org):
# - Variable TOWN_CRIER_URL = https://<app>.fly.dev
# - Secret TOWN_CRIER_TOKEN = the bearer token minted for "github-action"
#
# Produces BOTH sides of a request's lifecycle, so the bus never drifts from GitHub:
# - announce: when "Agent Review Requested" lands on a PR, tell the crier once.
# - resolve: when that PR closes/merges, retire its thread — otherwise a landed PR
# sits "open" on the bus forever (there is no GitHub->bus merge sync) and
# joined harnesses keep getting offered already-merged work.
# Joined harnesses pick up open requests from the bus — this workflow does NOT poll or review.
#
# The bus is fail-open: a town-crier hiccup (cold start, transient 5xx) must never red a
# PR's checks, so both jobs use continue-on-error + a curl --max-time. Neither job touches
# the GITHUB_TOKEN (they auth to the bus with TOWN_CRIER_TOKEN), so permissions are dropped.
name: town-crier producer (announce + resolve)

permissions: {}

on:
pull_request:
types: [labeled, closed]

jobs:
announce:
Comment thread
jasperboerhof marked this conversation as resolved.
if: github.event.action == 'labeled' && github.event.label.name == 'Agent Review Requested'
runs-on: ubuntu-latest
steps:
- name: Announce to the crier
continue-on-error: true
env:
CRIER_URL: ${{ vars.TOWN_CRIER_URL }}
CRIER_TOKEN: ${{ secrets.TOWN_CRIER_TOKEN }}
PR_URL: ${{ github.event.pull_request.html_url }}
REPO: ${{ github.repository }}
TITLE: ${{ github.event.pull_request.title }}
Comment thread
jasperboerhof marked this conversation as resolved.
REQUESTER: ${{ github.event.pull_request.user.login }}
run: |
# jq builds the JSON so a PR title with quotes can't break the payload.
curl -fsS --max-time 10 -X POST "$CRIER_URL/announce" \
-H "Authorization: Bearer $CRIER_TOKEN" \
-H "Content-Type: application/json" \
-d "$(jq -n \
--arg pr "$PR_URL" \
--arg repo "$REPO" \
--arg title "$TITLE" \
--arg requester "$REQUESTER" \
'{pr_url:$pr, repo:$repo, title:$title, requester:$requester}')"

resolve:
if: github.event.action == 'closed' && contains(github.event.pull_request.labels.*.name, 'Agent Review Requested')
Comment thread
jasperboerhof marked this conversation as resolved.
runs-on: ubuntu-latest
steps:
- name: Resolve on the crier
continue-on-error: true
env:
CRIER_URL: ${{ vars.TOWN_CRIER_URL }}
CRIER_TOKEN: ${{ secrets.TOWN_CRIER_TOKEN }}
PR_URL: ${{ github.event.pull_request.html_url }}
MERGED: ${{ github.event.pull_request.merged }}
run: |
NOTE=$([ "$MERGED" = "true" ] && echo "merged" || echo "closed without merge")
curl -fsS --max-time 10 -X POST "$CRIER_URL/resolve" \
-H "Authorization: Bearer $CRIER_TOKEN" \
-H "Content-Type: application/json" \
-d "$(jq -n --arg pr "$PR_URL" --arg note "$NOTE" '{pr_url:$pr, note:$note}')"
Loading