diff options
Diffstat (limited to '.github/workflows/issue-labeling.yml')
| -rw-r--r-- | .github/workflows/issue-labeling.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/issue-labeling.yml b/.github/workflows/issue-labeling.yml index a9bbaaac..7ea154f4 100644 --- a/.github/workflows/issue-labeling.yml +++ b/.github/workflows/issue-labeling.yml @@ -13,12 +13,12 @@ jobs: if: github.event.label.name == 'help wanted' uses: actions-cool/issues-helper@v2 with: - actions: "create-comment, remove-labels" + actions: 'create-comment, remove-labels' token: ${{ secrets.GITHUB_TOKEN }} issue-number: ${{ github.event.issue.number }} body: | Hello @${{ github.event.issue.user.login }}. We like your proposal/feedback and would appreciate a contribution via a Pull Request by you or another community member. We thank you in advance for your contribution and are looking forward to reviewing it! - labels: "pending triage" + labels: 'pending triage' - name: remove pending # If the issue is given either the 'enhancement' or 'bug' label, the 'pending triage' label will be removed @@ -26,7 +26,7 @@ jobs: if: github.event.label.name == 'enhancement' || github.event.label.name == 'bug' || (contains(github.event.label.name, 'pending triage') == false) uses: actions-cool/issues-helper@v2 with: - actions: "remove-labels" + actions: 'remove-labels' token: ${{ secrets.GITHUB_TOKEN }} issue-number: ${{ github.event.issue.number }} - labels: "pending triage" + labels: 'pending triage' |
