damccorm commented on code in PR #34456: URL: https://github.com/apache/beam/pull/34456#discussion_r2018858582
########## .github/workflows/run_rc_validation_java_mobile_gaming.yml: ########## @@ -0,0 +1,151 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +name: Run Java Mobile Gaming RC Validation + +on: + workflow_dispatch: + inputs: + RELEASE_VER: + description: 'Beam Release Version (e.g., 2.64.0)' + required: true + default: '2.64.0' + RC_NUM: + description: 'Release Candidate number (e.g., 1)' + required: true + default: '1' + APACHE_CONTENTS_REPO: + description: 'Apache Staging Repository URL (e.g., https://repository.apache.org/content/repositories/orgapachebeam-1234)' + required: true + GCP_PROJECT_ID: + description: 'GCP Project ID for running the test' + required: true + default: 'apache-beam-testing' # Default project used in other validations + GCS_BUCKET: Review Comment: Same as above ########## .github/workflows/run_java_mobile_gaming_rc_validation.yml: ########## @@ -0,0 +1,151 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +name: Run Java Mobile Gaming RC Validation + +on: + workflow_dispatch: + inputs: + RELEASE_VER: + description: 'Beam Release Version (e.g., 2.64.0)' + required: true + default: '2.64.0' + RC_NUM: + description: 'Release Candidate number (e.g., 1)' + required: true + default: '1' + APACHE_CONTENTS_REPO: + description: 'Apache Staging Repository URL (e.g., https://repository.apache.org/content/repositories/orgapachebeam-1234)' + required: true + GCP_PROJECT_ID: Review Comment: I don't think we need to parameterize GCP_PROJECT_ID or GCS_BUCKET, users will never really want to change this. ########## .github/workflows/run_rc_validation.yml: ########## @@ -16,6 +16,7 @@ # under the License. # To learn more about GitHub Actions in Apache Beam check the CI.m +# DO NOT USE THIS WORKFLOW AND WILL BE REMOVED SOON Review Comment: Can we just remove it in this PR? -- 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]
