From 9283863cfa849491f655ad08e900fb31ea828f01 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 4 Mar 2022 14:37:15 +0100 Subject: [PATCH] chore(deps): update actions-cool/issues-helper action to v3 (#505) Co-authored-by: Renovate Bot --- .github/workflows/issue-labeling.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/issue-labeling.yml b/.github/workflows/issue-labeling.yml index fab3cfd338a..ea66bbd2799 100644 --- a/.github/workflows/issue-labeling.yml +++ b/.github/workflows/issue-labeling.yml @@ -11,7 +11,7 @@ jobs: - name: contribution welcome # If the issue is labeled with 'help wanted', a comment will be posted if: github.event.label.name == 'help wanted' - uses: actions-cool/issues-helper@v2 + uses: actions-cool/issues-helper@v3 with: actions: 'welcome, remove-labels' token: ${{ secrets.GITHUB_TOKEN }} @@ -24,7 +24,7 @@ jobs: # If the issue is given either the 'enhancement' or 'bug' label, the 'pending triage' label will be removed # Issues without the label 'pending triage' are filtered with the third part of the condition, since the label does not have to be removed 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 + uses: actions-cool/issues-helper@v3 with: actions: 'remove-labels' token: ${{ secrets.GITHUB_TOKEN }}