-
Notifications
You must be signed in to change notification settings - Fork 0
fix: CI paths filter and workflow_dispatch #12
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
8f7d927
feat(agent): add --version and --help CLI flags
TerrifiedBug 3c9d0cd
ci: publish dev agent binaries as rolling pre-release
TerrifiedBug d34e659
feat(agent): add --channel dev flag to install script
TerrifiedBug d7db096
feat: dev-aware version comparison for agent updates
TerrifiedBug 7e8b1f5
db: add dev agent release tracking fields to SystemSettings
TerrifiedBug 1e13f34
feat: add dev channel agent version checking
TerrifiedBug 58c5336
feat: expose dev agent version in fleet router
TerrifiedBug 64b9a80
feat: channel-aware agent update buttons in fleet UI
TerrifiedBug f8f47bc
fix: address greptile review findings
TerrifiedBug 40a264f
fix: remove unused VF_CHANNEL from env file
TerrifiedBug 966631f
fix: persist agent checksums to DB across server restarts
TerrifiedBug 3efbfc1
fix: address greptile round 2 findings
TerrifiedBug 36c527b
fix: remove paths filter from push trigger and add workflow_dispatch
TerrifiedBug fd0bf72
fix: include workflow_dispatch in job conditions
TerrifiedBug 28184dd
Merge branch 'main' into feat/dev-binary-channel
TerrifiedBug 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
workflow_dispatchfrom any branch overwrites dev artifactsThe updated conditions at lines 55, 100, and 145 allow
workflow_dispatchto publish Docker images and recreate the rollingdevGitHub pre-release from any branch — not justmain. A developer can run:This would:
dev-tagged Docker images from the feature branch to ghcr.io (server-imageat line 55,agent-imageat line 100)devpre-release with binaries from the feature branch (agent-dev-binariesat line 145)main-branch run via thecancel-in-progress: trueconcurrency setting onagent-dev-binariesFix: Restrict
workflow_dispatchtomain(and semver tags for the image jobs):This ensures manual dispatch can only republish from
main.Prompt To Fix With AI