z3d1k commented on code in PR #48:
URL:
https://github.com/apache/flink-connector-aws/pull/48#discussion_r1085538878
##########
.github/workflows/common.yml:
##########
@@ -16,66 +16,87 @@
# limitations under the License.
################################################################################
-name: Build flink-connector-aws
-on: [push, pull_request]
-concurrency:
- group: ${{ github.workflow }}-${{ github.ref }}
- cancel-in-progress: true
+on:
+ workflow_call:
+ inputs:
+ flink_url:
+ description: "Url to Flink binary."
+ required: true
+ type: string
+ flink_version:
+ description: "Flink version to test against."
+ required: true
+ type: string
+ cache_flink_binary:
+ description: "Whether to cache the Flink binary. Should be false for
SNAPSHOT URLs, true otherwise."
+ required: true
+ type: boolean
+ timeout_global:
+ description: "The timeout in minutes for the entire workflow."
+ required: false
+ type: number
+ default: 60
+ timeout_test:
+ description: "The timeout in minutes for the test compile&step."
Review Comment:
fixed
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]