diff --git a/Dockerfile b/Dockerfile index 591c229..ae5928c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] diff --git a/README.md b/README.md index 73e43ad..9a3fde0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# LeanIX Microservice Intelligence action +# LeanIX Value Stream Management action ## Description @@ -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 }} @@ -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 diff --git a/action.yml b/action.yml index f5514b1..f485c62 100644 --- a/action.yml +++ b/action.yml @@ -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: diff --git a/entrypoint.sh b/entrypoint.sh index 4a9edf2..33c6cb1 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -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 diff --git a/package.json b/package.json index 2f12666..8d0d8ca 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ }, "keywords": [ "LeanIX", - "Microservice Intelligence" + "Value Stream Management" ], "author": "LeanIX", "license": "Apache License 2.0", diff --git a/miCiCd-init.gradle b/vsmCiCd-init.gradle similarity index 100% rename from miCiCd-init.gradle rename to vsmCiCd-init.gradle