From db9e6b4aa35120df13136933a4fb4df09341a641 Mon Sep 17 00:00:00 2001 From: Ramin Gharib Date: Mon, 26 Feb 2024 10:19:53 +0100 Subject: [PATCH] Fix symbolic link to CONTRIBUTING.md and parallel option in action.yaml (#462) --- CONTRIBUTING.md | 2 +- action.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 383e5b84c..92403f4d9 120000 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1 +1 @@ -docs/docs/developer/contributing.md +docs/docs/developer/contributing.md \ No newline at end of file diff --git a/action.yaml b/action.yaml index b04a1a6a8..aa3b27521 100644 --- a/action.yaml +++ b/action.yaml @@ -86,4 +86,4 @@ runs: - name: ${{ inputs.command }} ${{ inputs.pipeline }} pipeline shell: bash working-directory: ${{inputs.working-directory}} - run: kpops ${{ inputs.command }} ${{ inputs.pipeline }} ${{ (inputs.defaults != '' && format('--defaults {0}', inputs.defaults)) || '' }} ${{ (inputs.config != '' && format('--config {0}', inputs.config)) || '' }} ${{ (inputs.environment != '' && format('--environment {0}', inputs.environment)) || '' }} ${{ (inputs.filter-type != '' && format('--filter-type {0}', inputs.filter-type)) || '' }} ${{ (inputs.parallel == 'true' && '--parallel' || '' }} + run: kpops ${{ inputs.command }} ${{ inputs.pipeline }} ${{ (inputs.defaults != '' && format('--defaults {0}', inputs.defaults)) || '' }} ${{ (inputs.config != '' && format('--config {0}', inputs.config)) || '' }} ${{ (inputs.environment != '' && format('--environment {0}', inputs.environment)) || '' }} ${{ (inputs.filter-type != '' && format('--filter-type {0}', inputs.filter-type)) || '' }} ${{ (inputs.parallel == 'true' && '--parallel') || '' }}