-
Notifications
You must be signed in to change notification settings - Fork 2.2k
[FLINK-39038][infra] Limit GitHub actions max parallelism and workflow triggers #4263
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -47,6 +47,7 @@ jobs: | |
| runs-on: ubuntu-latest | ||
| timeout-minutes: 120 | ||
| strategy: | ||
| max-parallel: 20 | ||
|
Member
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. Modifying the parallelism settings does not solve the resource limitations of the action runner under the Apache organization. Perhaps we can consider moving the action execution to the contributor's fork repository (which is completely free). This would avoid Apache's limitations, and this approach is currently used in both Spark and SeaTunnel. @yuxiqian @lvyanquan |
||
| fail-fast: false | ||
| matrix: | ||
| java-version: ${{ fromJSON(inputs.java-versions) }} | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -21,7 +21,11 @@ | |
| # https://github.com/actions/labeler | ||
|
|
||
| name: Labeler | ||
| on: [pull_request_target] | ||
| on: | ||
| pull_request: | ||
| branches: | ||
| - master | ||
| - release-* | ||
|
Comment on lines
+24
to
+28
Member
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 change make label action broken. Fix it in #4268 |
||
|
|
||
| jobs: | ||
| label: | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.