Skip to content
This repository has been archived by the owner on Feb 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #4 from leanix/feature/CID-301-Update-the-names-of…
Browse files Browse the repository at this point in the history
…-integrations-at-marketplace-to-reflect-the-VSM-nomenclature

changing names from mi to vsm
  • Loading branch information
fposchner-cc authored Oct 22, 2021
2 parents 3c0a039 + 6b15b6c commit 8c909a7
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM node:12
RUN apt-get update && apt-get install -y openjdk-8-jdk && apt-get install maven -y && apt-get install gradle -y

COPY entrypoint.sh /entrypoint.sh
COPY miCiCd-init.gradle /miCiCd-init.gradle
COPY vsmCiCd-init.gradle /vsmCiCd-init.gradle
COPY dist/index.js /dist/index.js

ENTRYPOINT ["/entrypoint.sh"]
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


# LeanIX Microservice Intelligence action
# LeanIX Value Stream Management action

## Description

Expand Down Expand Up @@ -63,9 +63,9 @@ The input parameters used in the example are explained in more detail in the "In
steps:
- name: Checkout
uses: actions/checkout@v2
- name: LeanIX Microservice Intelligence
- name: LeanIX Value Stream Management
uses: leanix/github-actions-store-leanix-plugin@1.2.0
id: LIXMI
id: LIXVSM
with:
host: ${{ env.HOST }}
api-token: ${{ secrets.LEANIX_API_TOKEN }}
Expand All @@ -83,7 +83,7 @@ In the example workflow, various environment variables are initialized in the "e
The steps and assignments carried out under "jobs:" are necessary for the use of the LeanIX Action. In addition to the environment variables / input parameters to be set correctly, you can choose the following values ​​yourself:

- **"uses: leanix/github-actions-store-leanix-plugin@1.2.0":** Here you can choose which version of the LeanIX action you want to use.
- **"id: LIXMI":** This value is optional, here you can choose any ID for the LeanIX step in order to reference it elsewhere. For more information, see also https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstepsid
- **"id: LIXVSM":** This value is optional, here you can choose any ID for the LeanIX step in order to reference it elsewhere. For more information, see also https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstepsid


### Inputs
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "LeanIX Microservice Intelligence"
name: "LeanIX Value Stream Management action"
description: "Capture microservice and deployment information and send it to a LeanIX workspace"
inputs:
host:
Expand Down
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ fi

if [[ $1 = "GRADLE" ]]; then
echo "Gradle repository detected. Attempting to generate dependency file"
gradle generateLicenseReport -I /miCiCd-init.gradle
gradle generateLicenseReport -I /vsmCiCd-init.gradle
fi

node /dist/index.js
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"keywords": [
"LeanIX",
"Microservice Intelligence"
"Value Stream Management"
],
"author": "LeanIX",
"license": "Apache License 2.0",
Expand Down
File renamed without changes.

0 comments on commit 8c909a7

Please sign in to comment.