Skip to content

Commit f9ea1aa

Browse files
committed
fix: remove configFile unused input
1 parent 35af41f commit f9ea1aa

2 files changed

Lines changed: 0 additions & 3 deletions

File tree

action.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ inputs:
1717
description: 'The AWS secretAccessKey for an S3 bucket.'
1818
branch:
1919
description: 'Legacy field (use "gitBranch"): Used in Slack notifications. In a GitHub context you could use "github.ref".'
20-
configFile:
21-
description: 'A configuration file path in JSON format which holds all options defined here. This file should be relative to the file being interpretted. In this case it will most likely be the root of the repo ("./")'
2220
commentUrl:
2321
description: "An endpoint to post comments to. This is only needed if you want to trigger comments on 'push'. A 'pull_request' trigger does not require this to be set. Typically this will be from GitHub's API. Example: https://api.github.com/repos/:owner/:repo/commits/:commit_sha/comments."
2422
device:

src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ const formatInput = (input: string) => {
5757
awsRegion: formatInput(core.getInput('awsRegion')),
5858
awsSecretAccessKey: formatInput(core.getInput('awsSecretAccessKey')),
5959
branch: gitBranch || legacyGitBranch,
60-
configFile: formatInput(core.getInput('configFile')),
6160
device: device || legacyDevice,
6261
extraHeaders: !extraHeaders ? undefined : JSON.parse(extraHeaders),
6362
locale: formatInput(core.getInput('locale')),

0 commit comments

Comments
 (0)