Skip to content

Commit

Permalink
feat: bring issue-labeler up-to-date (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
balazsorban44 authored Jan 27, 2023
1 parent 2b2ee49 commit de16e74
Show file tree
Hide file tree
Showing 6 changed files with 187 additions and 520 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ inputs:
required: false
default: "0"
runs:
using: 'node12'
main: 'lib/main.js'
using: 'node16'
main: 'lib/index.js'
branding:
icon: 'activity'
color: 'blue'
7 changes: 7 additions & 0 deletions lib/index.js

Large diffs are not rendered by default.

257 changes: 0 additions & 257 deletions lib/main.js

This file was deleted.

23 changes: 15 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
"name": "issue-labeler",
"version": "1.0.0",
"description": "",
"main": "lib/main.js",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"build": "ncc -m -o lib build src/main.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"types": "tsc --emitDeclarationOnly"
},
"repository": {
"type": "git",
Expand All @@ -18,11 +20,16 @@
},
"homepage": "https://github.com/github/issue-labeler#readme",
"dependencies": {
"@actions/core": "^1.2.1",
"@actions/github": "^2.0.1",
"@types/js-yaml": "^3.12.1",
"@types/minimatch": "^3.0.3",
"js-yaml": "^3.13.1",
"minimatch": "^3.0.4"
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"js-yaml": "^4.1.0",
"minimatch": "^6.1.6"
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/minimatch": "^5.1.2",
"@types/node": "^18.11.18",
"@vercel/ncc": "^0.36.1",
"typescript": "^4.9.4"
}
}
Loading

0 comments on commit de16e74

Please sign in to comment.