From 710d29bafc6680ef37753c495cd183aa6919c75c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Ga=C5=82at?= Date: Tue, 28 May 2024 14:22:18 +0000 Subject: [PATCH] GHA: remove revision input from doc action MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit for workflow call we always want to use the current revision and for workflow_dispatch we can select branch or tag Signed-off-by: Robert Gałat --- .github/workflows/publish_documentation.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/publish_documentation.yml b/.github/workflows/publish_documentation.yml index 1159d51e98..eb88c0a890 100644 --- a/.github/workflows/publish_documentation.yml +++ b/.github/workflows/publish_documentation.yml @@ -8,11 +8,6 @@ on: required: false default: "latest" description: "Label of the documentation" - project_revision: - type: string - required: false - default: "main" - description: "Branch/commitSHA of the project from where documentaiton is build" workflow_call: inputs: @@ -20,10 +15,6 @@ on: type: string required: true default: "latest" - project_revision: - type: string - required: true - default: "main" jobs: Publish_Documentation: @@ -43,7 +34,6 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 - ref: ${{inputs.project_revision}} path: sidewalk - name: Build documentation