From 1d2cbda1dadc97eeeb0500e649effdb6a0411ae7 Mon Sep 17 00:00:00 2001 From: Vihang Mehta Date: Tue, 23 Jan 2024 08:07:55 -0800 Subject: [PATCH] Ignore PR description linter when PR is created by dependabot (#1823) Summary: TSIA Relevant Issues: N/A Type of change: /kind infra Test Plan: This will prevent the GH actions from showing a failed run on dependabot PRs. Signed-off-by: Vihang Mehta --- .github/workflows/pr_description_linter.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pr_description_linter.yaml b/.github/workflows/pr_description_linter.yaml index 173a3cc960f..743a9ab278e 100644 --- a/.github/workflows/pr_description_linter.yaml +++ b/.github/workflows/pr_description_linter.yaml @@ -7,6 +7,7 @@ permissions: contents: read jobs: lint-pr-description: + if: github.actor != 'dependabot[bot]' runs-on: ubuntu-latest env: PR_BODY: ${{github.event.pull_request.body}}