Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkeye116477 committed Sep 14, 2023
1 parent 6099275 commit 2ffc46e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/issueCloser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

6 changes: 4 additions & 2 deletions .github/workflows/issueLabelClosed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@ 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
steps:
- uses: hawkeye116477/issue-manager-action@main
with:
mode: "labelClosed"
completed-label: "zatwierdzone"
completed-label: |
zatwierdzone
solved
not-planned-label: "wontfix"

0 comments on commit 2ffc46e

Please sign in to comment.