👷 ci: patch workflows - #9
Merged
Merged
Conversation
|
✅ All required checks have passed. This pull request is eligible to be merged. |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates GitHub Actions workflows to improve CI reliability/clarity by adjusting the reusable build workflow invocation, adding Linux system package installation steps, and removing an unused workflow file.
Changes:
- Pass
work_dir: "./workspace"whenrelease.ymlcalls the reusablebuild.ymlworkflow. - Add an
apt-get installstep forpkg-configandlibkrb5-devin the.deband.rpmpackaging jobs inbuild.yml. - Delete
.github/workflows/dependabot.yml.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| .github/workflows/release.yml | Sets work_dir when invoking the reusable build workflow to run cargo commands from ./workspace. |
| .github/workflows/build.yml | Adds Linux system dependency installation steps in packaging jobs. |
| .github/workflows/dependabot.yml | Removes a workflow file that is not used by Dependabot configuration. |
Comments suppressed due to low confidence (1)
.github/workflows/dependabot.yml:1
- Removing
.github/workflows/dependabot.ymldoes not disable Dependabot updates (Dependabot reads.github/dependabot.yml, not workflow files). Since the repo still has.github/dependabot.yml, Dependabot will remain enabled; if disabling is intended, that file needs to be updated/removed instead. Otherwise, consider updating the PR description to reflect that this removes an unused/misplaced file rather than disabling Dependabot.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
rtzn1234
approved these changes
May 6, 2026
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.
This pull request makes several updates to the GitHub Actions workflow configuration files to improve build reliability and workflow clarity. The primary changes are the addition of system dependencies in the build process, a minor update to the release workflow, and the removal of the Dependabot configuration.
Build workflow improvements:
pkg-configandlibkrb5-dev) for all enabled build matrix entries in.github/workflows/build.yml, ensuring required libraries are present for builds. [1] [2]Release workflow updates:
work_dirinput to"./workspace"in therelease.ymlworkflow when calling the build workflow, clarifying the working directory used during CLI builds.Dependency management:
.github/workflows/dependabot.ymlfile, disabling automated dependency update PRs via Dependabot.