From b3b0679cb0794a5761893d06da71d9f4d792af52 Mon Sep 17 00:00:00 2001 From: Donatas Abraitis Date: Mon, 13 Mar 2023 09:52:13 +0200 Subject: [PATCH] tools: Use specific syntax for conditions for Github actions Signed-off-by: Donatas Abraitis --- .github/workflows/commitlint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml index 06bf3b3b95..96cd118f3a 100644 --- a/.github/workflows/commitlint.yml +++ b/.github/workflows/commitlint.yml @@ -11,7 +11,7 @@ on: jobs: commitlint: - if: github.repository == 'frrouting/frr' && github.base_ref == 'refs/heads/master' + if: ${{ github.repository == 'frrouting/frr' }} && ${{ github.base_ref == 'refs/heads/master' }} name: Check if the commits meet the requirements of the guidelines permissions: contents: read -- 2.39.5