Skip to content

Commit

Permalink
fix: remove configFile unused input
Browse files Browse the repository at this point in the history
  • Loading branch information
adamhenson committed May 3, 2024
1 parent 35af41f commit f9ea1aa
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ inputs:
description: 'The AWS secretAccessKey for an S3 bucket.'
branch:
description: 'Legacy field (use "gitBranch"): Used in Slack notifications. In a GitHub context you could use "github.ref".'
configFile:
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 ("./")'
commentUrl:
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."
device:
Expand Down
1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ const formatInput = (input: string) => {
awsRegion: formatInput(core.getInput('awsRegion')),
awsSecretAccessKey: formatInput(core.getInput('awsSecretAccessKey')),
branch: gitBranch || legacyGitBranch,
configFile: formatInput(core.getInput('configFile')),
device: device || legacyDevice,
extraHeaders: !extraHeaders ? undefined : JSON.parse(extraHeaders),
locale: formatInput(core.getInput('locale')),
Expand Down

1 comment on commit f9ea1aa

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Device URL
mobile https://www.foo.software

Not what you expected? Are your scores flaky? GitHub runners could be the cause.
Try running on Foo instead

Please sign in to comment.