Fix maintainer label, minor docs

eb17e37002a6235af39934e4cbe77a65df2683ae

Wolfsblvt <wolfsblvt@gmail.com>

2 files changed, +14 -6Ignore whitespace
.github/workflows/issues-auto-manager.yml+13 -5
@@ -5,7 +5,7 @@ on:
55 types: [opened, edited, labeled, unlabeled]
66
77jobs:
88 issue-label-on-content:
99 name: Auto-Label Issues (Based on Issue Content)
1010 runs-on: ubuntu-latest
1111
@@ -22,21 +22,25 @@ jobs:
2222 enable-versioned-regex: 0
2323 repo-token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
2424
2525 issue-label-on-labels:
2626 name: Auto-Label Issues (Based on Issue Labels)
2727 runs-on: ubuntu-latest
2828
2929 steps:
3030 - name: βœ… Add "πŸ‘ Approved" for relevant labels
3131 if: contains(fromJSON('["πŸ‘©β€πŸ’» Good First Issue", "πŸ™ Help Wanted", "πŸͺ² Confirmed", "⚠️ High Priority", "❕ Medium Priority", "πŸ’€ Low Priority"]'), github.event.label.name)
32+ # πŸ€– Issues Helper
33+ # https://github.com/marketplace/actions/issues-helper
3234 uses: actions-cool/issues-helper@v3
3335 with:
3436 actions: 'add-labels'
3537 token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
3638 labels: 'πŸ‘ Approved'
3739
3840 - name: ❌ Remove progress labels when PR/issue is marked done or stale
3941 if: contains(fromJSON('["βœ… Done", "βœ… Done (staging)", "⚰️ Stale", "❌ wontfix"]'), github.event.label.name)
42+ # πŸ€– Issues Helper
43+ # https://github.com/marketplace/actions/issues-helper
4044 uses: actions-cool/issues-helper@v3
4145 with:
4246 actions: 'remove-labels'
@@ -45,6 +49,8 @@ jobs:
4549
4650 - name: ❌ Remove temporary labels when confirmed labels are added
4751 if: contains(fromJSON('["❌ wontfix","πŸ‘ Approved","πŸ‘©β€πŸ’» Good First Issue"]'), github.event.label.name)
52+ # πŸ€– Issues Helper
53+ # https://github.com/marketplace/actions/issues-helper
4854 uses: actions-cool/issues-helper@v3
4955 with:
5056 actions: 'remove-labels'
@@ -53,15 +59,17 @@ jobs:
5359
5460 - name: ❌ Remove no bug labels when "πŸͺ² Confirmed" is added
5561 if: github.event.label.name == 'πŸͺ² Confirmed'
62+ # πŸ€– Issues Helper
63+ # https://github.com/marketplace/actions/issues-helper
5664 uses: actions-cool/issues-helper@v3
5765 with:
5866 actions: 'remove-labels'
5967 token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
6068 labels: 'βœ–οΈ Not Reproducible,βœ–οΈ Not A Bug'
6169
6270 issuewrite-auto-comments:
6371 name: Post Issue Comments Based on Labels
6472 needs: [issue-label-on-content, issue-label-on-labels]
6573 runs-on: ubuntu-latest
6674
6775 steps:
.github/workflows/on-open-handler.yml+1 -1
@@ -43,7 +43,7 @@ jobs:
4343 owner,
4444 repo,
4545 issue_number,
4646 labels: ['πŸ‘· Maintainer'],
4747 });
4848 } else {
4949 console.log(`User ${username} is not a repo maintainer.`);