-
-
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 run by ensuring go-gitlint tool is installed #115
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: The GitHub Actions run failed with the following error logs: |
Fixing PR: track the progress here.I'm currently fixing this PR to address the following: The GitHub Actions run failed with the following error logs: |
Fixing PR: track the progress here.I'm currently fixing this PR to address the following: The GitHub Actions run failed with the following error logs: |
Fixing PR: track the progress here.I'm currently fixing this PR to address the following: The GitHub Actions run failed with the following error logs: |
Fixing PR: track the progress here.I'm currently fixing this PR to address the following: The GitHub Actions run failed with the following error logs: |
Fixing PR: track the progress here.I'm currently fixing this PR to address the following: The GitHub Actions run failed with the following error logs: |
Fixing PR: track the progress here.I'm currently fixing this PR to address the following: The GitHub Actions run failed with the following error logs: |
Fixing PR: track the progress here.I'm currently fixing this PR to address the following: The GitHub Actions run failed with the following error logs: |
❌ Could not find files to change Please join our Discord to report this issue. |
Fixing PR: track the progress here.I'm currently fixing this PR to address the following: The GitHub Actions run failed with the following error logs: |
Fixing PR: track the progress here.I'm currently fixing this PR to address the following: The GitHub Actions run failed with the following error logs: |
Fixing PR: track the progress here.I'm currently fixing this PR to address the following: The GitHub Actions run failed with the following error logs: |
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 run failure by ensuring the
go-gitlint
tool is installed before the githook scripts are run. The error was occurring because thecommit-msg
githook script was unable to find thego-gitlint
tool.The fix was implemented by adding a new step in the GitHub Actions workflow file to install the
go-gitlint
tool. This step runs the command 'make tools' OR 'make tools.verify.go-gitlint' as suggested in the error logs.Summary of Changes
.github/workflows/main.yml
to add a new step for installing thego-gitlint
tool before the githook scripts are run.