We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e49cf78 commit 33918fbCopy full SHA for 33918fb
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "use-app-token",
3
- "version": "2.0.1",
+ "version": "2.0.2",
4
"description": "Run GitHub Actions as a GitHub App by using the app's authentication token",
5
"main": "dist/index.js",
6
"files": [
src/index.ts
@@ -1,9 +1,8 @@
-import { getBooleanInput } from '@actions/core'
import { isPost } from './state'
import { run, cleanup } from './action'
if (!isPost) {
run()
7
-} else if (getBooleanInput('clean')) {
+} else {
8
cleanup()
9
}
0 commit comments