Issue workflow#160
Merged
Merged
Conversation
Add instructions for how security vulnerabilities may be reported. Also add other issue templates so reports can be more organized and reporters know what information is needed in a report.
Contributor
There was a problem hiding this comment.
Pull request overview
This PR introduces an issue-driven workflow for maintainers to prepare/publish releases and create maintenance branches, while also formalizing security reporting guidance and adding structured GitHub issue templates.
Changes:
- Add GitHub Actions workflows + shell scripts to prepare releases, publish annotated
vX.Y.Ztags, and createrelease/<major.minor>branches from labeled issues. - Configure the Gradle release plugin and adjust Spotless ratcheting to use the PR base ref / release branches when available.
- Add SECURITY.md and a set of GitHub issue templates (release, release-branch, bug, feature, compatibility, security guidance).
Reviewed changes
Copilot reviewed 21 out of 22 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| SECURITY.md | Adds a security policy and private vulnerability reporting instructions. |
| mise.toml | Pins local dev tooling versions (actionlint/bats/java/jq/shellcheck). |
| build.gradle.kts | Configures net.researchgate.release and makes Spotless ratchet ref branch-aware. |
| .github/workflows/ci.yml | Expands CI triggers to release branches and version tags; adds Sonatype upload gating by snapshot/release. |
| .github/workflows/release-prepare.yml | New workflow to prepare a release work branch and open/update a PR from an issue label. |
| .github/workflows/release-publish.yml | New workflow to tag + fast-forward publish from a labeled issue after checks pass. |
| .github/workflows/release-branch.yml | New workflow to create release/<major.minor> maintenance branches from labeled issues. |
| .github/scripts/release-common.sh | Shared parsing/validation helpers for issue-driven release scripts. |
| .github/scripts/prepare-release.sh | Automates creating release-work/<version> and running the Gradle release task in no-push mode. |
| .github/scripts/upsert-release-pr.sh | Opens/updates the release PR and comments back on the issue. |
| .github/scripts/publish-release.sh | Validates PR state/checks, creates annotated tag, and fast-forwards the target branch. |
| .github/scripts/create-release-branch.sh | Creates a maintenance branch from a specified source ref/branch and comments back on the issue. |
| .github/scripts/comment-issue-failure.sh | Posts tail of workflow logs as an issue comment on failure. |
| .github/tests/release-scripts.bats | Adds a Bats test suite for the release automation scripts using stubs. |
| .github/ISSUE_TEMPLATE/* | Adds structured issue forms for release workflows and common report types. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
9c190dc to
e9b224e
Compare
Use GitHub Actions to trigger the release workflow via issue.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
No description provided.