Skip to content

Commit 548e5d0

Browse files
committed
test
1 parent f8d4a5e commit 548e5d0

File tree

2 files changed

+23
-4
lines changed

2 files changed

+23
-4
lines changed

.github/workflows/issueCloser.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
1-
name: Portier
1+
name: Zamykanie etykietami dla otwartych zgłoszeń
22

33
on:
44
issues:
55
types: [labeled]
66

77
jobs:
8-
apply-label:
9-
if: github.event.label.name == 'zatwierdzone' || github.event.label.name == 'odrzucone'
8+
close:
9+
if: github.event.label.name == 'zatwierdzone' || github.event.label.name == 'odrzucone' || github.event.label.name == 'dawno zrobione'
1010
runs-on: ubuntu-latest
1111
permissions:
1212
issues: write
1313
steps:
1414
- uses: hawkeye116477/issue-manager-action@v1
1515
with:
1616
mode: "close"
17-
completed-label: "zatwierdzone"
17+
completed-label: |
18+
zatwierdzone
19+
dawno zrobione
1820
not-planned-label: "odrzucone"
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Dodawanie etykiet dla zamykanych zgłoszeń
2+
3+
on:
4+
issues:
5+
types: [closed]
6+
7+
jobs:
8+
apply-label:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
issues: write
12+
steps:
13+
- uses: hawkeye116477/issue-manager-action@v1
14+
with:
15+
mode: "labelClosed"
16+
completed-label: "zatwierdzone"
17+
not-planned-label: "odrzucone"

0 commit comments

Comments
 (0)