-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Fix GitHub Actions Failure by Installing go-gitlint #134
Conversation
Rollback Files For Sweep
|
Sandbox Executions |
Sandbox Executions |
Fixing PR: track the progress here.I'm currently fixing this PR to address the following: [Sweep GHA Fix] The GitHub Actions run failed with the following error logs: Making changes according to plan... (step 3/3) |
Fixing PR: track the progress here.I'm currently fixing this PR to address the following: [Sweep GHA Fix] The GitHub Actions run failed with the following error logs: Making changes according to plan... (step 3/3) |
❌ Could not find files to change Please join our Discord to report this issue. |
This issue is stale because it has been open 7 days with no activity. |
This PR was closed because it has been stalled for 5 days with no activity. You can reopen it if you want. |
PR Feedback (click)
I created this PR to fix the failing GitHub Actions.## Description
This PR fixes the GitHub Actions failure that was caused by the go-gitlint tool not being found. The tool is used in the commit-msg githook to enforce coding standards on commit messages. The error suggested running 'make tools' or 'make tools.verify.go-gitlint' to install the tool, but this was not being done in the GitHub Actions workflow.
Summary of Changes
.github/workflows/main.yml
that installs the go-gitlint tool. This step runs before the githooks are executed.After these changes, the GitHub Actions workflow should be able to find and use the go-gitlint tool, and the githooks should execute without errors.