mirror of
https://github.com/headroomlabs-ai/headroom.git
synced 2026-08-27 14:17:10 -04:00
scripts/validate-workflows.sh exercises release.yml with an `act` dry-run that posted a synthesized push-to-main event. After the previous commit retired that trigger in favor of `release: published`, the dry-run started failing in CI because release.yml no longer responds to push events. Simulate the new trigger instead: feed release.yml a release-published event (.github/act/release-published.json) and move the push-to-main dry-run onto release-please.yml — the workflow that now owns that event.
11 lines
262 B
JSON
11 lines
262 B
JSON
{
|
|
"action": "published",
|
|
"release": {
|
|
"tag_name": "v0.9.2",
|
|
"name": "Release v0.9.2",
|
|
"draft": false,
|
|
"prerelease": false,
|
|
"body": "## What's Changed\n\n* fix: example change for act dry-run simulation"
|
|
},
|
|
"ref": "refs/tags/v0.9.2"
|
|
}
|