Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
baksetercx committed May 8, 2024
1 parent 52f22be commit 02aed5f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions deploy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -244,9 +244,9 @@ runs:
if: always()
with:
url: ${{ env.VAULT_ADDR }}
role: jwt-github-${{ inputs.namespace }}-${{ env.REPO_SHORT_NAME }}
method: jwt
path: jwt-github
role: 'jwt-github-${{ inputs.namespace }}-${{ env.REPO_SHORT_NAME }}'
method: 'jwt'
path: 'jwt-github'
secrets: |
monitoring/kv/data/shared grafana_api_url | GRAFANA_URL ;
monitoring/kv/data/shared grafana_editor_api_key | GRAFANA_API_KEY
Expand Down
8 changes: 4 additions & 4 deletions integrationtest/action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Integration Test
description: 'Run dotnet integration tests.'
description: 'Run .NET integration tests.'
inputs:
system:
description: 'System is used to log in to Vault using correct role.'
Expand All @@ -9,11 +9,11 @@ inputs:
required: false
default: 'true'
working-directory:
description: 'Will run integration tests on projects under this working directory'
description: 'Will run integration tests on projects under this working directory.'
required: false
default: './'
test-projects:
description: 'Pattern to use to find test projects. Defaults to *integration*test*csproj'
description: 'Pattern to use to find test projects.'
required: false
default: '*integration*test*csproj'
dotnet-version:
Expand Down Expand Up @@ -79,4 +79,4 @@ runs:
files: |
**/TestResults/*.trx
.github/**/TestResults/*.trx
check_name: Integration Test Results
check_name: 'Integration Test Results'
8 changes: 4 additions & 4 deletions unittest/action.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: Unit Test
description: 'Run dotnet unit tests.'
description: 'Run .NET unit tests.'
inputs:
checkout:
description: 'If "true", the action will check out the repository. If "false", the action will assume the repository has already been checked out.'
required: false
default: 'true'
working-directory:
description: 'Will run unit tests on projects under this working directory'
description: 'Will run unit tests on projects under this working directory.'
required: false
default: './'
test-projects:
description: 'Pattern to use to find test projects. Defaults to *unit*test*csproj'
description: 'Pattern to use to find test projects.'
required: false
default: '*unit*test*csproj'
dotnet-version:
Expand Down Expand Up @@ -47,4 +47,4 @@ runs:
files: |
**/TestResults/*.trx
.github/**/TestResults/*.trx
check_name: Unit Test Results
check_name: 'Unit Test Results'

0 comments on commit 02aed5f

Please sign in to comment.