e04ed9c211
CF: Deploy Dev Docs / deploy (push) Waiting to run
Sync Labels / build (push) Waiting to run
tests / unit tests (macos-latest) (push) Waiting to run
tests / unit tests (ubuntu-latest) (push) Waiting to run
tests / unit tests (windows-latest) (push) Waiting to run
43 lines
1.2 KiB
YAML
43 lines
1.2 KiB
YAML
# Copyright 2026 Google LLC
|
|
#
|
|
# Licensed 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: lint
|
|
|
|
# zizmor flags pull_request_target, but this fallback workflow never checks out code.
|
|
on: # zizmor: ignore[dangerous-triggers]
|
|
pull_request:
|
|
paths:
|
|
- "docs/**"
|
|
- "**.md"
|
|
- ".github/**"
|
|
- "!.github/workflows/lint.yaml"
|
|
pull_request_target:
|
|
paths:
|
|
- "docs/**"
|
|
- "**.md"
|
|
- ".github/**"
|
|
- "!.github/workflows/lint.yaml"
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
lint:
|
|
name: lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Skip Lint
|
|
run: |
|
|
echo "Skipping lint for documentation/config-only changes."
|
|
echo "This job exists to satisfy the required status check."
|