diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..81d02bd --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @ccojocar @madchap diff --git a/README.md b/README.md index 2575e22..0857849 100644 --- a/README.md +++ b/README.md @@ -34,10 +34,6 @@ jobs: steps: - name: Checkout Source uses: actions/checkout@v1 - - name: Generate SVG Diagrams - uses: cloudbees/plantuml-github-action@master - with: - args: -v -tsvg $UML_FILES - name: Get changed UML files id: getfile run: | @@ -45,10 +41,14 @@ jobs: - name: UML files considered echo output run: | echo ${{ steps.getfile.outputs.files }} + - name: Generate SVG Diagrams + uses: cloudbees/plantuml-github-action@master + with: + args: -v -tsvg ${{ steps.getfile.outputs.files }} - name: Generate PNG Diagrams uses: cloudbees/plantuml-github-action@master with: - args: -v -tpng $UML_FILES + args: -v -tpng ${{ steps.getfile.outputs.files }} - name: Push Local Changes uses: stefanzweifel/git-auto-commit-action@v4.1.2 with: