diff options
| author | Mark Stapp <mjs.ietf@gmail.com> | 2023-03-15 08:20:48 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-15 08:20:48 -0400 |
| commit | b8d099e02b8b0eb12f329ce427145e23846f58eb (patch) | |
| tree | 081fe4b366c8dcc679831760aa567e90880866dc | |
| parent | 1c3fca84adb3833112580cfdd5648311c6a97826 (diff) | |
| parent | b3b0679cb0794a5761893d06da71d9f4d792af52 (diff) | |
Merge pull request #12982 from opensourcerouting/fix/commmitlint_condition
tools: Use specific syntax for conditions for Github actions
| -rw-r--r-- | .github/workflows/commitlint.yml | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
