Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change label config settings to use-label. #22

Merged
merged 23 commits into from
Aug 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
29 changes: 29 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"indent": [
"error",
"tab"
],
"linebreak-style": [
"error",
"windows"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
]
}
}
14 changes: 3 additions & 11 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,13 @@ inputs:
description: "The GitHub token to use. Make sure to use a Personal Access Token, so PRs can be updated."
required: false
default: ${{ github.token }}
label-name:
description: "The name of the label that will be added to blocked issues and pull requests."
use-label:
description: "The name of the label to apply to blocked issues or pull requests. If not found, the default value will be used."
required: false
default: "blocked"
label-description:
description: "The description of the label added to blocked issues and pull requests."
required: false
default: "This PR is waiting for one or more issues to be closed."
label-color:
description: "The color of the label added to blocked issues and pull requests."
required: false
default: "000000"
branding:
icon: "git-pull-request"
color: "red"
runs:
using: 'node12'
using: 'node16'
main: 'src/index.js'
307 changes: 307 additions & 0 deletions node_modules/.package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading