-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Disable current workflows for builder #4287
Disable current workflows for builder #4287
Conversation
Signed-off-by: Juraci Paixão Kröhling <[email protected]>
Codecov Report
@@ Coverage Diff @@
## main #4287 +/- ##
==========================================
+ Coverage 88.39% 88.45% +0.05%
==========================================
Files 173 173
Lines 10446 10443 -3
==========================================
+ Hits 9234 9237 +3
+ Misses 975 969 -6
Partials 237 237
Continue to review full report at Codecov.
|
@@ -7,6 +7,8 @@ | |||
name: "Inform Incompatible PRs" | |||
on: | |||
pull_request: | |||
paths-ignore: | |||
- 'builder/**' |
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.
As mentioned in the other PR, I would prefer cmd/builder since it is a command :)
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.
This is the first step of a multi-step move. The other PR is mostly the whole repo of builder with its history, all places in one directory. If you prefer the whole application to be within cmd/builder, that's doable, but if you mean just the main.go for the application, then I will tackle that in subsequent PRs.
paths-ignore: | ||
- 'builder/**' |
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.
we should not ignore this.
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.
This is the tidier, shouldn't be critical for this first step. Or is it?
paths-ignore: | ||
- 'builder/**' | ||
pull_request: | ||
paths-ignore: | ||
- 'builder/**' |
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.
codeql should run all the time even for builder.
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.
Agree, and I think this might already work out of the box. If it doesn't after merging this, I'll open another PR disabling CodeQL temporarily.
paths-ignore: | ||
- 'builder/**' | ||
pull_request: | ||
paths-ignore: | ||
- 'builder/**' |
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.
links check is ok to run for the builder as well.
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.
They are currently failing with the link checks for the release instructions, as I reference a non-existing tag as example. I have a first ready for this, to be sent on a third PR.
Signed-off-by: Juraci Paixão Kröhling <[email protected]>
This PR is in preparation for moving the builder to the core repository (#4275 and #4286)
Signed-off-by: Juraci Paixão Kröhling [email protected]