Skip to content
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

[hotfix] Miscellaneous fixes on GHA workflows #3839

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,13 @@ e2e-tests:
- flink-cdc-e2e-tests/**/*
migration-tests:
- flink-cdc-migration-tests/**/*
add-ons:
- flink-cdc-pipeline-model/**/*
- flink-cdc-pipeline-udf-examples/**/*
base:
- flink-cdc-connect/flink-cdc-source-connectors/flink-cdc-base/**/*
debezium:
- flink-cdc-connect/flink-cdc-source-connectors/flink-cdc-debezium/**/*
- flink-cdc-connect/flink-cdc-source-connectors/flink-connector-debezium/**/*
connector-test-util:
- flink-cdc-connect/flink-cdc-source-connectors/flink-connector-test-util/**/*
db2-cdc-connector:
Expand Down Expand Up @@ -86,3 +89,7 @@ starrocks-pipeline-connector:
- flink-cdc-connect/flink-cdc-pipeline-connectors/flink-cdc-pipeline-connector-starrocks/**/*
elasticsearch-pipeline-connector:
- flink-cdc-connect/flink-cdc-pipeline-connectors/flink-cdc-pipeline-connector-elasticsearch/**/*
oceanbase-pipeline-connector:
- flink-cdc-connect/flink-cdc-pipeline-connectors/flink-cdc-pipeline-connector-oceanbase/**/*
maxcompute-pipeline-connector:
- flink-cdc-connect/flink-cdc-pipeline-connectors/flink-cdc-pipeline-connector-maxcompute/**/*
6 changes: 3 additions & 3 deletions .github/workflows/close_stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ jobs:
close-issue-message: >
This issue has been closed because Flink CDC doesn't use GitHub issue trackers.
# Stale PRs
days-before-pr-stale: 60
days-before-pr-close: 30
days-before-pr-stale: 120
days-before-pr-close: 60
stale-pr-message: >
This pull request has been automatically marked as stale because it has not had recent
activity for 60 days. It will be closed in 30 days if no further activity occurs.
activity for 120 days. It will be closed in 60 days if no further activity occurs.
close-pr-message: >
This pull request has been closed because it has not had recent activity. You could reopen it
if you try to continue your work, and anyone who are interested in it are encouraged to continue
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/flink_cdc_ci_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
name: Flink CDC CI Nightly
on:
schedule:
- cron: '0 0 * * *' # Deploy every day
- cron: '43 0 * * *' # Run daily, but not at 00:00 UTC to avoid job failure due to network throttle
workflow_dispatch:

concurrency:
Expand Down
Loading