bobbai00 commented on code in PR #4734: URL: https://github.com/apache/texera/pull/4734#discussion_r3177818715
########## .github/workflows/license-binary-nightly.yml: ########## @@ -0,0 +1,201 @@ +# 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: License-binary nightly + +# PR builds run check_binary_deps.py with --ignore-transitive-version +# (#4691, #4693) so a benign upstream version bump on a transitive dep +# does not block merges. This workflow runs the same build.yml every +# night on `main` with `ignore_transitive_version: false`, exercising +# the strict exact-match check on every ecosystem. On drift, it files +# (or updates / closes) a single tracking issue identified by the +# stable label `license-binary-drift`. Sub-task of #4688. +# +# Reusing build.yml (rather than duplicating its dist-producing steps) +# guarantees PR and nightly runs go through identical code paths — the +# only difference between them is the value of one input. +on: + schedule: + # 07:00 UTC daily — late evening US-Pacific, early morning Europe. + - cron: "0 7 * * *" Review Comment: changed -- 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]
