Skip to content

Commit

Permalink
feat(lint): add artifactoryUsername and artifactoryAuthToken inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
h-wang94 committed May 12, 2022
1 parent b929899 commit 39714d2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
10 changes: 6 additions & 4 deletions lint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@ jobs:
## Inputs
| parameter | description | required | default |
| ------------- | -------------------------------------------------------------------------- | -------- | ------- |
| checkout-repo | Perform checkout as first step of action | `false` | true |
| github-token | GitHub token that can checkout the repository. e.g. 'secrets.GITHUB_TOKEN' | `true` | |
| parameter | description | required | default |
| ---------------------- | -------------------------------------------------------------------------- | -------- | ------- |
| checkout-repo | Perform checkout as first step of action | `false` | true |
| github-token | GitHub token that can checkout the repository. e.g. 'secrets.GITHUB_TOKEN' | `true` | |
| artifactory-username | Username to use for Artifactory access | `true` | |
| artifactory-auth-token | Authentication token to use with username for Artifactory access | `true` | |

## Runs

Expand Down
6 changes: 6 additions & 0 deletions lint/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ inputs:
github-token:
required: true
description: GitHub token that can checkout the repository. e.g. 'secrets.GITHUB_TOKEN'
artifactory-username:
required: true
description: Username to use for Artifactory access
artifactory-auth-token:
required: true
description: Authentication token to use with username for Artifactory access
runs:
using: composite
steps:
Expand Down

0 comments on commit 39714d2

Please sign in to comment.