Remove unavailable fields 60/14860/1
authorRavi Pendurty <ravi.pendurty@highstreet-technologies.com>
Thu, 28 Aug 2025 17:15:42 +0000 (22:45 +0530)
committerRavi Pendurty <ravi.pendurty@highstreet-technologies.com>
Thu, 28 Aug 2025 17:15:42 +0000 (22:45 +0530)
GERRIT_BRANCH and GERRIT_CHANGE_URL are not available as inputs

Issue-ID: OAM-490
Change-Id: I84a714ed6f1957281235c2ffcc719477dd3a7d23
Signed-off-by: Ravi Pendurty <ravi.pendurty@highstreet-technologies.com>
.github/workflows/gerrit-merge-oam-oam-controller.yaml

index 3c2f7ce..2e30c9e 100644 (file)
@@ -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 }}