This commit is contained in:
Benjamin Lannon 2022-03-05 10:56:29 -05:00
commit 7890981d0e
4 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,7 @@
# 3.0.1 - March 5, 2022
- fix: When comparing labels, the action will no longer care about case sensitivity (ex: `label` and `Label` will be treated as the same).
# 3.0.0 - May 29, 2021
- breaking: Switched default behavior to not delete default labels. To enable this, set `delete` input to true

File diff suppressed because one or more lines are too long

5
package-lock.json generated
View file

@ -1,11 +1,12 @@
{
"name": "issue-label-manager-action",
"version": "3.0.0",
"version": "3.0.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"version": "3.0.0",
"name": "issue-label-manager-action",
"version": "3.0.1",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.3.0",

View file

@ -1,6 +1,6 @@
{
"name": "issue-label-manager-action",
"version": "3.0.0",
"version": "3.0.1",
"description": "Will update repo's labels based on data in JSON file located at $REPO/.github/labels.json",
"main": "index.js",
"keywords": [],