Open naomi-lgbt opened 2 weeks ago
The changes involve an update to the GitHub Actions workflow configuration file .github/workflows/release.yml
. An additional branch trigger has been added to the release process, specifically allowing the workflow to be activated on pushes to branches that match the pattern release/*
. This modification expands the automation capabilities for releases by including release/*
as a prerelease branch in the semantic release configuration without altering the existing job structure or steps.
File | Change Summary |
---|---|
.github/workflows/release.yml | Added branch trigger release/* under on.push.branches and updated Create a release step to include release/* as a prerelease branch. |
sequenceDiagram
participant Developer
participant GitHub
participant CI/CD
Developer->>GitHub: Push to release/*
GitHub->>CI/CD: Trigger release workflow
CI/CD->>GitHub: Execute release process
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
This gives us the ability to cut alpha/beta/custom releases via a
release/
branch.Summary by CodeRabbit
release/*
naming convention.