Skip to content

Commit 3746607

Browse files
Merge branch 'develop'
2 parents 3424fc2 + b0553df commit 3746607

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/Labeler.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,40 +12,40 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: "Add denied label when closed if it has pending label"
15-
if: "contains(github.event.issue.labels.*.name, 'Status: Pending') && github.event.action == 'closed'"
16-
uses: andymckay/labeler@master
15+
if: "github.event.action == 'closed' && contains(github.event.issue.labels.*.name, 'Status: Pending')"
16+
uses: andymckay/labeler@1.0.4
1717
with:
1818
add-labels: "Status: Denied"
1919
remove-labels: "Status: Pending"
2020
- name: "Add resolved label when closed if it has accepted label"
21-
if: "contains(github.event.issue.labels.*.name, 'Status: Accepted') && github.event.action == 'closed'"
22-
uses: andymckay/labeler@master
21+
if: "github.event.action == 'closed' && contains(github.event.issue.labels.*.name, 'Status: Accepted')"
22+
uses: andymckay/labeler@1.0.4
2323
with:
2424
add-labels: "Status: Resolved"
2525
remove-labels: "Status: Accepted"
2626
- name: "Add default label when opened if it has no pending label"
2727
if: "github.event.action == 'opened' && !contains(github.event.issue.labels.*.name, 'Status: Pending')"
28-
uses: andymckay/labeler@master
28+
uses: andymckay/labeler@1.0.4
2929
with:
30-
add-labels: "Status: Pending"
30+
add-labels: "Status: Pending, Priority: Normal"
3131
change-label-by-triage:
3232
name: Change label by triage with label
3333
runs-on: ubuntu-latest
3434
if: "github.event.action == 'labeled'"
3535
steps:
3636
- name: "Remove pending and denied label when triaged"
37-
if: "github.event.action == 'labeled' && (contains(github.event.issue.labels.*.name, 'Status: Pending') || contains(github.event.issue.labels.*.name, 'Status: Pending'))"
38-
uses: andymckay/labeler@master
37+
if: "github.event.label.name == 'Status: Accepted'"
38+
uses: andymckay/labeler@1.0.4
3939
with:
4040
remove-labels: "Status: Pending, Status: Denied"
4141
- name: "Change labels when Duplicated"
4242
if: "github.event.label.name == 'Status: Duplicated'"
43-
uses: andymckay/labeler@master
43+
uses: andymckay/labeler@1.0.4
4444
with:
4545
add-labels: "Status: Denied"
4646
- name: "Change labels when add Resolved label"
4747
if: "github.event.label.name == 'Status: Resolved'"
48-
uses: andymckay/labeler@master
48+
uses: andymckay/labeler@1.0.4
4949
with:
5050
remove-labels: "Status: Accepted"
5151
close-issue-by-label:

.github/workflows/docs-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- name: Deploy NMS
6262
uses: TeamKun/NMSAccess@v2
6363
with:
64-
access-token: ${{ secrets.token }}
64+
access-token: ${{ secrets.GH_PAT }}
6565
versions: |
6666
1.18.1 # v1_18_R1
6767
1.18.1 # v1_18_R1

0 commit comments

Comments
 (0)