feat!: rebrand awesome-ci to relctl#232
Closed
eksrha wants to merge 2 commits into
Closed
Conversation
BREAKING CHANGES: - Binary renamed from `awesome-ci` to `relctl` - Module path changed to `github.com/layer87-labs/relctl` - All `ACI_` env var prefixes renamed to `RELCTL_` - PR comment syntax: `aci_patch_level:` -> `relctl_patch_level:`, `aci_version_override:` -> `relctl_version_override:` - `RELCTL_SILENT` replaces `ACI_SILENT` CI/CD workflows: - Replace Release.yaml + branchPR.yaml + codeql-analysis.yml with ci.yaml + release.yaml + stale.yaml - Tag pattern changed from `v*.*.*` to `[0-9]*.[0-9]*.[0-9]*` (v-less) - ci.yaml: `generate-infos` first job runs `awesome-ci pr info`, all other jobs depend on it - release.yaml: `create-release` first job runs `awesome-ci release create`, downstream jobs consume `version` + `release-id` outputs - Go build commands moved to Makefile targets (`ci/build`, `build/single`) - `CGO_ENABLED=0` moved from workflow env to Makefile targets - All GitHub Actions updated to latest versions (checkout@v6, setup-go@v6, upload-artifact@v7, download-artifact@v8, golangci-lint@v9, codeql@v3, trivy@v0, cosign-installer@v4, dependency-review@v5, stale@v10) Makefile: - Add `ci/build` target (compile check, output to /dev/null) - Add `build/single` target (release build with LDFLAGS + versioning) Docs: - Update all CLI reference pages to reflect new binary name and env vars - Update examples to use RELCTL_ variables
|
You are seeing this message because GitHub Code Scanning has recently been set up for this repository, or this pull request contains the workflow file for the Code Scanning tool. What Enabling Code Scanning Means:
For more information about GitHub Code Scanning, check out the documentation. |
- fix errcheck: handle return values of cmd.Help(), MarkFlagRequired(), MarkFlagFilename(), CloseEnvFile(), ParseFile(), Parse(), ForEach(), os.Truncate(), UpdateCreds() - fix ineffassign: remove dead assignments in IncreaseVersion(), ParsePatchLevelFormBranch(), envvars.Set() - fix trivy-action: use @v0.36.0 (v0 floating tag does not exist) - remove gitleaks job: requires paid org license - consolidate lint+test into single audit job using make audit - add golangci-lint to make audit target
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.
BREAKING CHANGES:
awesome-citorelctlgithub.com/layer87-labs/relctlACI_env var prefixes renamed toRELCTL_aci_patch_level:->relctl_patch_level:,aci_version_override:->relctl_version_override:RELCTL_SILENTreplacesACI_SILENTCI/CD workflows:
v*.*.*to[0-9]*.[0-9]*.[0-9]*(v-less)generate-infosfirst job runsawesome-ci pr info, all other jobs depend on itcreate-releasefirst job runsawesome-ci release create, downstream jobs consumeversion+release-idoutputsci/build,build/single)CGO_ENABLED=0moved from workflow env to Makefile targetsMakefile:
ci/buildtarget (compile check, output to /dev/null)build/singletarget (release build with LDFLAGS + versioning)Docs: