DO64: Trigger update chain registry workflow on published/prerelease event with tags #46
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
User description
Changes :
Added release trigger: Added on.release with types: [published, prereleased] to trigger on both regular releases and pre-releases
Automatic tag detection: Modified line 23 to use ${{ github.event.release.tag_name || inputs.release_tag }} which:
Kept existing triggers: Maintained workflow_dispatch and workflow_call for backward compatibility and manual testing
Now the workflow will automatically trigger whenever a release or prerelease is published in the repository, using the release tag (like v20.0.0) automatically without requiring manual input.
PR Type
Enhancement
Description
• Automated workflow triggering on published/prereleased releases
• Added AI PR bot for automatic PR reviews
• Modified tag detection to use release event data
• Updated reviewer assignment to team-based approach
Changes walkthrough 📝
ai_pr_bot.yaml
New AI PR bot workflow
.github/workflows/ai_pr_bot.yaml
• Added new AI PR bot workflow configuration
• Configured to run on
public repositories only
• Enabled auto-review and auto-describe
features
• Uses Anthropic Claude model for AI assistance
update_chain_registry.yaml
Enhanced workflow automation and reviewer updates
.github/workflows/update_chain_registry.yaml
• Added release trigger for published/prereleased events
• Modified
tag detection to use
github.event.release.tag_name
• Changed reviewer
assignment to team
burnt-labs/devops
• Maintained backward
compatibility with manual triggers