From 2ffc46e4be742a6e0e8105d5458d3be0d53d9e3c Mon Sep 17 00:00:00 2001 From: hawkeye116477 Date: Thu, 14 Sep 2023 16:46:46 +0200 Subject: [PATCH] Test --- .github/workflows/issueCloser.yml | 5 +++-- .github/workflows/issueLabelClosed.yml | 6 ++++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/issueCloser.yml b/.github/workflows/issueCloser.yml index d4596792..b9738a02 100644 --- a/.github/workflows/issueCloser.yml +++ b/.github/workflows/issueCloser.yml @@ -13,6 +13,7 @@ jobs: - uses: hawkeye116477/issue-manager-action@main with: mode: "close" - completed-label: "zatwierdzone" + completed-label: | + zatwierdzone + solved not-planned-label: "wontfix" - \ No newline at end of file diff --git a/.github/workflows/issueLabelClosed.yml b/.github/workflows/issueLabelClosed.yml index db9913cb..c31542e1 100644 --- a/.github/workflows/issueLabelClosed.yml +++ b/.github/workflows/issueLabelClosed.yml @@ -6,7 +6,7 @@ on: jobs: apply-label: - if: github.event.label.name == 'zatwierdzone' || github.event.label.name == 'wontfix' + if: github.event.label.name !== 'zatwierdzone' || github.event.label.name !== 'wontfix' || github.event.label.name !== 'solved' runs-on: ubuntu-latest permissions: issues: write @@ -14,5 +14,7 @@ jobs: - uses: hawkeye116477/issue-manager-action@main with: mode: "labelClosed" - completed-label: "zatwierdzone" + completed-label: | + zatwierdzone + solved not-planned-label: "wontfix"