-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(deps): update npm/.github action to v0.4.1
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
- Loading branch information
1 parent
e02f0fe
commit 2caafba
Showing
2 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,28 +34,28 @@ jobs : | |
runs-on : ubuntu-latest | ||
steps : | ||
- name : default label bug | ||
uses : "npm/.github/actions/[email protected].0" | ||
uses : "npm/.github/actions/[email protected].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/[email protected].0" | ||
uses : "npm/.github/actions/[email protected].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/[email protected].0" | ||
uses : "npm/.github/actions/[email protected].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/[email protected].0" | ||
uses : "npm/.github/actions/[email protected].1" | ||
if : contains( github.actor , '[bot]' ) == false | ||
with : | ||
input : 'issues | addAssignees | context.repo | issue_number:${{ github.event.issue.number }} | assignees:[ "${{ github.actor }}" ]' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,28 +33,28 @@ jobs : | |
runs-on : ubuntu-latest | ||
steps : | ||
- name : default label bug | ||
uses : "npm/.github/actions/[email protected].0" | ||
uses : "npm/.github/actions/[email protected].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/[email protected].0" | ||
uses : "npm/.github/actions/[email protected].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/[email protected].0" | ||
uses : "npm/.github/actions/[email protected].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/[email protected].0" | ||
uses : "npm/.github/actions/[email protected].1" | ||
if : contains( github.actor , '[bot]' ) == false | ||
with : | ||
input : 'issues | addAssignees | context.repo | issue_number:${{ github.event.pull_request.number }} | assignees:[ "${{ github.actor }}" ]' | ||
|