-
Notifications
You must be signed in to change notification settings - Fork 218
Add release procedure and automation gates #625
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
e1e6e55
Add release procedure and automation gates
simsong-codex f1cccb5
Isolate release orchestration in a script
simsong-codex cb7bc27
Merge origin/main into dev-release
simsong-codex b52aff2
Merge current main into dev-release
simsong-codex f4b2025
Skip Debian CI job for draft pull requests
simsong-codex e273521
Document distribution source-package submissions
simsong-codex d79d91b
Harden release preparation workflow
simsong-codex 61773d9
Consolidate historical roadmaps into release notes
simsong-codex b7326e0
Remove obsolete HTML overview
simsong-codex fed5755
Update man page for bulk_extractor 2.2
simsong-codex 2d2df8d
Remove obsolete performance notes
simsong-codex 0d819a8
Merge branch 'dev-release' into doc-fix-release-notes
simsong c98248d
Merge pull request #629 from simsong/doc-fix-release-notes
simsong 3d0b1f9
Merge branch 'dev-release' into doc-man
simsong bc2b992
Merge pull request #630 from simsong/doc-man
simsong File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,97 @@ | ||
| name: Release | ||
| description: Plan, validate, and publish a versioned bulk_extractor release. | ||
| title: "release: " | ||
| labels: [release] | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| Use this issue as the release record. Do not attach forensic images, unredacted scan output, credentials, presigned URLs, or other sensitive material. Record only approved image identifiers/checksums and redacted validation evidence. | ||
| - type: input | ||
| id: version | ||
| attributes: | ||
| label: Target version | ||
| description: The intended release version, for example `2.2.1`. | ||
| placeholder: "2.2.1" | ||
| validations: | ||
| required: true | ||
| - type: input | ||
| id: tag | ||
| attributes: | ||
| label: Release tag | ||
| description: Immutable signed annotated tag to create after release-PR merge. | ||
| placeholder: "v2.2.1" | ||
| validations: | ||
| required: true | ||
| - type: input | ||
| id: commit | ||
| attributes: | ||
| label: Reviewed commit SHA | ||
| description: Full SHA at which the tag will be created. Do not use a mutable branch name. | ||
| placeholder: "0123456789abcdef..." | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: people | ||
| attributes: | ||
| label: Release manager and package maintainers | ||
| description: Name the release manager and the maintainers authorized to submit Debian and RPM packages. | ||
| placeholder: | | ||
| Release manager: @... | ||
| Debian repository maintainer: @... | ||
| RPM repository maintainer: @... | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: large_images | ||
| attributes: | ||
| label: Approved large-image validation inputs | ||
| description: Record only a safe image identifier, SHA-256 checksum, approval source, and storage/access policy. Never attach or link case data. | ||
| placeholder: | | ||
| Identifier: ... | ||
| SHA-256: ... | ||
| Approval: ... | ||
| Access policy: ... | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: build_evidence | ||
| attributes: | ||
| label: Build and validation evidence | ||
| description: Add URLs for macOS, Ubuntu, Fedora/RPM, Windows, and AWS validation jobs as they complete. Include redacted result summaries and checksums only. | ||
| placeholder: | | ||
| - [ ] macOS `make distcheck`: | ||
| - [ ] macOS large-image scan: | ||
| - [ ] Ubuntu `make distcheck`: | ||
| - [ ] Fedora/RPM `make distcheck`: | ||
| - [ ] Windows executable and Unicode test: | ||
| - [ ] AWS large-image validation and cleanup: | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: artifacts | ||
| attributes: | ||
| label: Release artifacts and provenance | ||
| description: Add each artifact filename, SHA-256 checksum, producing job URL, and eventual publication URL. | ||
| placeholder: | | ||
| - [ ] Source archive: | ||
| - [ ] Windows executable: | ||
| - [ ] Debian package: | ||
| - [ ] RPM package: | ||
| - [ ] AWS validation summary: | ||
| - [ ] SHA256SUMS: | ||
| validations: | ||
| required: true | ||
| - type: checkboxes | ||
| id: gates | ||
| attributes: | ||
| label: Release gates | ||
| options: | ||
| - label: The release PR updates `configure.ac`, release notes, and applicable package metadata. | ||
| required: true | ||
| - label: The tag will be signed, annotated, immutable, and created at the reviewed SHA only after all required checks pass. | ||
| required: true | ||
| - label: I will use a draft GitHub Release and publish it only after the evidence and artifacts are reviewed. | ||
| required: true | ||
| - label: I will not include confidential forensic data or credentials in this issue. | ||
| required: true |
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
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
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
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
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
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
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.