From 77df5076db8ae43b1ff405d92a289460e477e661 Mon Sep 17 00:00:00 2001 From: Max Mehl Date: Thu, 22 Jun 2023 12:04:39 +0200 Subject: [PATCH] add allow failure --- .github/workflows/3rd_party_lint.yaml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/3rd_party_lint.yaml b/.github/workflows/3rd_party_lint.yaml index ed1185a64..1de2d2def 100644 --- a/.github/workflows/3rd_party_lint.yaml +++ b/.github/workflows/3rd_party_lint.yaml @@ -18,14 +18,21 @@ on: jobs: third-party-lint: runs-on: ubuntu-latest + continue-on-error: ${{ matrix.ignore-failure }} strategy: # do not abort the whole test job if one step fails fail-fast: false + # matrix: - repo: ["fsfe/reuse-example", "spdx/license-list-XML", "curl/curl", "SAP/openui"] + repo: ["fsfe/reuse-example", "curl/curl", "SAP/openui5"] + ignore-failure: [false] + # add a repo for which we know it's not compliant + include: + - repo: spdx/license-list-XML + ignore-failure: true steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python uses: actions/setup-python@v2 with: