From 3c7aed1f4a7e2b6532bf2aefe3c4c7ac500b3e6b Mon Sep 17 00:00:00 2001 From: Averi Kitsch Date: Mon, 4 Mar 2024 11:00:26 -0800 Subject: [PATCH 1/2] chore(ci): add fallback lint --- .github/workflows/lint.yml | 12 ++++++++++-- .github/workflows/lint_fallback.yml | 28 ++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/lint_fallback.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7b866f5..2352d4b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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: @@ -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 diff --git a/.github/workflows/lint_fallback.yml b/.github/workflows/lint_fallback.yml new file mode 100644 index 0000000..32d3c36 --- /dev/null +++ b/.github/workflows/lint_fallback.yml @@ -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." From 129803b8629b564da5950e00578c07ffd08cdb5c Mon Sep 17 00:00:00 2001 From: Averi Kitsch Date: Tue, 5 Mar 2024 14:52:04 -0800 Subject: [PATCH 2/2] Update lint_fallback.yml --- .github/workflows/lint_fallback.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint_fallback.yml b/.github/workflows/lint_fallback.yml index 32d3c36..04841b9 100644 --- a/.github/workflows/lint_fallback.yml +++ b/.github/workflows/lint_fallback.yml @@ -15,8 +15,10 @@ name: Lint on: pull_request: - paths: + paths: # These paths are the inverse of lint.yml - "*.md" + - ".kokoro/**" + - ".github/**" jobs: lint: