From: Ravi Pendurty Date: Thu, 28 Aug 2025 17:15:42 +0000 (+0530) Subject: Remove unavailable fields X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=1547ba23c7cadba54f8d81d643430dba38380f7c;p=oam%2Foam-controller.git Remove unavailable fields GERRIT_BRANCH and GERRIT_CHANGE_URL are not available as inputs Issue-ID: OAM-490 Change-Id: I84a714ed6f1957281235c2ffcc719477dd3a7d23 Signed-off-by: Ravi Pendurty --- diff --git a/.github/workflows/gerrit-merge-oam-oam-controller.yaml b/.github/workflows/gerrit-merge-oam-oam-controller.yaml index 3c2f7ce..2e30c9e 100644 --- a/.github/workflows/gerrit-merge-oam-oam-controller.yaml +++ b/.github/workflows/gerrit-merge-oam-oam-controller.yaml @@ -8,22 +8,22 @@ name: Gerrit Composed Maven Merge on: workflow_dispatch: inputs: - GERRIT_BRANCH: - description: "Branch that change is against" - required: true - type: string - GERRIT_CHANGE_ID: - description: "The ID for the change" - required: true - type: string - GERRIT_CHANGE_NUMBER: - description: "The Gerrit number" - required: true - type: string - GERRIT_CHANGE_URL: - description: "URL to the change" - required: true - type: string + # GERRIT_BRANCH: + # description: "Branch that change is against" + # required: true + # type: string + # GERRIT_CHANGE_ID: + # description: "The ID for the change" + # required: true + # type: string + # GERRIT_CHANGE_NUMBER: + # description: "The Gerrit number" + # required: true + # type: string + # GERRIT_CHANGE_URL: + # description: "URL to the change" + # required: true + # type: string GERRIT_EVENT_TYPE: description: "Type of Gerrit event" required: true @@ -68,10 +68,10 @@ jobs: # yamllint disable-line rule:line-length uses: ravipendurty/releng-reusable-workflows/.github/workflows/compose-make-merge.yaml@main with: - GERRIT_BRANCH: ${{ inputs.GERRIT_BRANCH }} + # GERRIT_BRANCH: ${{ inputs.GERRIT_BRANCH }} # GERRIT_CHANGE_ID: ${{ inputs.GERRIT_CHANGE_ID }} # GERRIT_CHANGE_NUMBER: ${{ inputs.GERRIT_CHANGE_NUMBER }} - GERRIT_CHANGE_URL: ${{ inputs.GERRIT_CHANGE_URL }} + # GERRIT_CHANGE_URL: ${{ inputs.GERRIT_CHANGE_URL }} GERRIT_EVENT_TYPE: ${{ inputs.GERRIT_EVENT_TYPE }} GERRIT_PATCHSET_NUMBER: ${{ inputs.GERRIT_PATCHSET_NUMBER }} GERRIT_PATCHSET_REVISION: ${{ inputs.GERRIT_PATCHSET_REVISION }}