From 2caafba19f4ce6d7678f5bc32810edd1198edfe0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 18 Feb 2024 08:58:51 +0000 Subject: [PATCH] fix(deps): update npm/.github action to v0.4.1 Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/issue.yml | 8 ++++---- .github/workflows/pulls.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/issue.yml b/.github/workflows/issue.yml index 8b0d6d4..64d2b3b 100644 --- a/.github/workflows/issue.yml +++ b/.github/workflows/issue.yml @@ -34,28 +34,28 @@ jobs : runs-on : ubuntu-latest steps : - name : default label bug - uses : "npm/.github/actions/default@v0.4.0" + uses : "npm/.github/actions/default@v0.4.1" with : regex : '^(BUG)' subject : '${{ github.event.issue.title }}' input : 'issues | addLabels | context.repo | issue_number:${{ github.event.issue.number }} | labels:[ "bug" ]' token : '${{ secrets.GITHUB_TOKEN }}' - name : default label feature - uses : "npm/.github/actions/default@v0.4.0" + uses : "npm/.github/actions/default@v0.4.1" with : regex : '^(FEATURE)' subject : '${{ github.event.issue.title }}' input : 'issues | addLabels | context.repo | issue_number:${{ github.event.issue.number }} | labels:[ "feature" ]' token : '${{ secrets.GITHUB_TOKEN }}' - name : default label question - uses : "npm/.github/actions/default@v0.4.0" + uses : "npm/.github/actions/default@v0.4.1" with : regex : '^(QUESTION)' subject : '${{ github.event.issue.title }}' input : 'issues | addLabels | context.repo | issue_number:${{ github.event.issue.number }} | labels:[ "question" ]' token : '${{ secrets.GITHUB_TOKEN }}' - name : default assignees actor - uses : "npm/.github/actions/default@v0.4.0" + uses : "npm/.github/actions/default@v0.4.1" if : contains( github.actor , '[bot]' ) == false with : input : 'issues | addAssignees | context.repo | issue_number:${{ github.event.issue.number }} | assignees:[ "${{ github.actor }}" ]' diff --git a/.github/workflows/pulls.yml b/.github/workflows/pulls.yml index 5bdd7b1..2e1ddce 100644 --- a/.github/workflows/pulls.yml +++ b/.github/workflows/pulls.yml @@ -33,28 +33,28 @@ jobs : runs-on : ubuntu-latest steps : - name : default label bug - uses : "npm/.github/actions/default@v0.4.0" + uses : "npm/.github/actions/default@v0.4.1" with : regex : '^(fix)(\([\w\-]+\))?(\!)?(\:)' subject : '${{ github.event.pull_request.title }}' input : 'issues | addLabels | context.repo | issue_number:${{ github.event.pull_request.number }} | labels:[ "bug" ]' token : '${{ secrets.GITHUB_TOKEN }}' - name : default label feature - uses : "npm/.github/actions/default@v0.4.0" + uses : "npm/.github/actions/default@v0.4.1" with : regex : '^(feat)(\([\w\-]+\))?(\!)?(\:)' subject : '${{ github.event.pull_request.title }}' input : 'issues | addLabels | context.repo | issue_number:${{ github.event.pull_request.number }} | labels:[ "feature" ]' token : '${{ secrets.GITHUB_TOKEN }}' - name : default label chore - uses : "npm/.github/actions/default@v0.4.0" + uses : "npm/.github/actions/default@v0.4.1" with : regex : '^(chore)(\([\w\-]+\))?(\!)?(\:)' subject : '${{ github.event.pull_request.title }}' input : 'issues | addLabels | context.repo | issue_number:${{ github.event.pull_request.number }} | labels:[ "chore" ]' token : '${{ secrets.GITHUB_TOKEN }}' - name : default assignees actor - uses : "npm/.github/actions/default@v0.4.0" + uses : "npm/.github/actions/default@v0.4.1" if : contains( github.actor , '[bot]' ) == false with : input : 'issues | addAssignees | context.repo | issue_number:${{ github.event.pull_request.number }} | assignees:[ "${{ github.actor }}" ]'