Skip to content
Draft
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
33 changes: 33 additions & 0 deletions .github/workflows/changelog-sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: "Changelog: Sync"

# Evals releases are surfaced on the changelog page that lives in
# strands-agents/harness-sdk, so this workflow opens a cross-repo PR there.

on:
release:
types: [published]
workflow_dispatch:
inputs:
tag:
description: 'Single release tag to sync'
type: string
default: ''

permissions:
contents: read

jobs:
sync:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: strands-agents/devtools/changelog-release-pr@main
with:
source-repo: strands-agents/evals
mode: single
tag: ${{ github.event.release.tag_name || inputs.tag }}
# Cross-repo: needs pull-requests:write + contents:write on harness-sdk.
# Reuse the org's existing cross-repo automation token; do not provision
# a new secret without confirming none exists.
github-token: ${{ secrets.CHANGELOG_PR_TOKEN }}
Loading