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 3bac048 commit 6f7658cCopy full SHA for 6f7658c
__tests__/index.test.ts
@@ -1,7 +1,7 @@
1
import { execSync } from 'child_process'
2
import path from 'path'
3
import dotenv from 'dotenv'
4
-import { getInput } from '../src/inputs'
+import { getInput } from '../src/input'
5
6
test('input', () => {
7
process.env.INPUT_GIST_ID = 'gist_id'
src/inputs.ts renamed to src/input.ts
src/run.ts
@@ -2,7 +2,7 @@ import fs from 'fs'
import * as core from '@actions/core'
import * as github from '@actions/github'
-import { showInput, getInput } from './inputs'
+import { showInput, getInput } from './input'
export const run = async (): Promise<void> => {
8
const input = getInput()
0 commit comments