-
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
Signed-off-by: Juraci Paixão Kröhling <[email protected]>
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,8 @@ | |
name: "Inform Incompatible PRs" | ||
on: | ||
pull_request: | ||
paths-ignore: | ||
- 'builder/**' | ||
branches: | ||
- main | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,11 @@ name: check-links | |
on: | ||
push: | ||
branches: [ main ] | ||
paths-ignore: | ||
- 'builder/**' | ||
pull_request: | ||
paths-ignore: | ||
- 'builder/**' | ||
Comment on lines
+5
to
+9
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 commentThe 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. |
||
|
||
jobs: | ||
check-links: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,11 @@ name: "CodeQL Analysis" | |
on: | ||
push: | ||
branches: [ main ] | ||
paths-ignore: | ||
- 'builder/**' | ||
pull_request: | ||
paths-ignore: | ||
- 'builder/**' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 commentThe 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. |
||
|
||
jobs: | ||
CodeQL-Build: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,8 @@ name: Dependabot-Tidier | |
on: | ||
pull_request: | ||
types: [ labeled ] | ||
paths-ignore: | ||
- 'builder/**' | ||
Comment on lines
+6
to
+7
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 commentThe 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? |
||
|
||
jobs: | ||
mod_tidier: | ||
|
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.