Skip to content

Commit

Permalink
fix(deps): update npm/.github action to v0.4.1
Browse files Browse the repository at this point in the history
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Feb 18, 2024
1 parent e02f0fe commit 2caafba
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}" ]'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pulls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}" ]'
Expand Down

0 comments on commit 2caafba

Please sign in to comment.