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

chore(ci): add fallback lint #34

Merged
merged 4 commits into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
12 changes: 10 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,16 @@
name: Lint
on:
pull_request:
paths-ignore:
paths-ignore: # Changes to the paths list need to be reflected in lint_fallback.yml
- "*.md"
- ".kokoro/**"
- ".github/**"
pull_request_target:
types: [labeled]
paths-ignore:
- "*.md"
- ".kokoro/**"
- ".github/**"

jobs:
lint:
Expand Down Expand Up @@ -50,9 +54,13 @@ jobs:
} catch (e) {
console.log('Failed to remove label. Another job may have already removed it!');
}

- name: Checkout Repository
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
token: ${{ secrets.GITHUB_TOKEN }}

- name: Setup Python
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
Expand Down
28 changes: 28 additions & 0 deletions .github/workflows/lint_fallback.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Copyright 2024 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
on:
pull_request:
paths:
- "*.md"

jobs:
lint:
runs-on: ubuntu-latest
permissions:
contents: none

steps:
- run: echo "No tests required."