{
  "_class" : "hudson.model.FreeStyleBuild",
  "actions" : [
    {
      "_class" : "hudson.model.CauseAction",
      "causes" : [
        {
          "_class" : "com.cloudbees.jenkins.GitHubPushCause",
          "shortDescription" : "Started by GitHub push by ti-chi-bot[bot]"
        },
        {
          "_class" : "com.cloudbees.jenkins.GitHubPushCause",
          "shortDescription" : "Started by GitHub push by ti-chi-bot[bot]"
        }
      ]
    },
    {
      
    },
    {
      "_class" : "jenkins.metrics.impl.TimeInQueueAction",
      "blockedDurationMillis" : 0,
      "blockedTimeMillis" : 0,
      "buildableDurationMillis" : 15829,
      "buildableTimeMillis" : 15829,
      "buildingDurationMillis" : 43611,
      "executingTimeMillis" : 43611,
      "executorUtilization" : 1.0,
      "subTaskCount" : 0,
      "waitingDurationMillis" : 6988,
      "waitingTimeMillis" : 6988
    },
    {
      "_class" : "hudson.plugins.git.util.BuildData",
      "buildsByBranchName" : {
        "origin/main" : {
          "_class" : "hudson.plugins.git.util.Build",
          "buildNumber" : 1786,
          "buildResult" : null,
          "marked" : {
            "SHA1" : "0bb5d8ffa9d082ac3dd81829bc0f7503b4dec0ce",
            "branch" : [
              {
                "SHA1" : "0bb5d8ffa9d082ac3dd81829bc0f7503b4dec0ce",
                "name" : "origin/main"
              }
            ]
          },
          "revision" : {
            "SHA1" : "0bb5d8ffa9d082ac3dd81829bc0f7503b4dec0ce",
            "branch" : [
              {
                "SHA1" : "0bb5d8ffa9d082ac3dd81829bc0f7503b4dec0ce",
                "name" : "origin/main"
              }
            ]
          }
        }
      },
      "lastBuiltRevision" : {
        "SHA1" : "0bb5d8ffa9d082ac3dd81829bc0f7503b4dec0ce",
        "branch" : [
          {
            "SHA1" : "0bb5d8ffa9d082ac3dd81829bc0f7503b4dec0ce",
            "name" : "origin/main"
          }
        ]
      },
      "remoteUrls" : [
        "https://github.com/PingCAP-QE/ci.git"
      ],
      "scmName" : ""
    },
    {
      
    },
    {
      
    },
    {
      
    },
    {
      
    },
    {
      
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction"
    }
  ],
  "artifacts" : [
    
  ],
  "building" : false,
  "description" : null,
  "displayName" : "#1786",
  "duration" : 43611,
  "estimatedDuration" : 50115,
  "executor" : null,
  "fullDisplayName" : "seed #1786",
  "id" : "1786",
  "inProgress" : false,
  "keepLog" : false,
  "number" : 1786,
  "queueId" : 3694121,
  "result" : "SUCCESS",
  "timestamp" : 1781761872482,
  "url" : "https://do.pingcap.net/jenkins/job/seed/1786/",
  "builtOn" : "default-7tt5m",
  "changeSet" : {
    "_class" : "hudson.plugins.git.GitChangeSetList",
    "items" : [
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "tekton/v1/tasks/delivery/pingcap-notify-to-update-ops-tidbx.yaml",
          "tekton/v1/triggers/triggers/env-gcp/kustomization.yaml",
          "tekton/v1/triggers/triggers/env-gcp/_/notify/notified-successful-image-delivery-cloud-tidbx.yaml",
          "tekton/v1/triggers/triggers/env-gcp/_/notify/update-tcms-when-tidbx-image-distributed-to-clouds.yaml",
          "tekton/v1/triggers/triggers/env-gcp/_/notify/update-ops-when-tidbx-image-distributed-to-clouds.yaml"
        ],
        "commitId" : "0bb5d8ffa9d082ac3dd81829bc0f7503b4dec0ce",
        "timestamp" : 1781761845000,
        "author" : {
          "absoluteUrl" : "https://do.pingcap.net/jenkins/user/noreply",
          "fullName" : "noreply"
        },
        "authorEmail" : "noreply@github.com",
        "comment" : "refactor(tekton): split tidbx trigger and add tag filter for ops (#4700)\u000a\u000a## Summary\u000a\u000aRefactors the tidbx image delivery notification triggers to improve\u000aseparation of concerns and add release-tag filtering.\u000a\u000a## Changes\u000a\u000a### 1. Split combined trigger into two focused triggers\u000a\u000aThe previous `notified-successful-image-delivery-cloud-tidbx` trigger\u000aspawned both an ops-update **and** a TCMS-update TaskRun in a single\u000atrigger. This meant both tasks shared the same filter conditions, which\u000ais not ideal — TCMS should record all image deliveries, but ops should\u000aonly act on release images.\u000a\u000a- **`update-ops-when-tidbx-image-distributed-to-clouds`** (renamed from\u000a`notified-successful-image-delivery-cloud-tidbx`)\u000a  - Triggers `pingcap-notify-to-update-ops-tidbx` TaskRun\u000a- **`update-tcms-when-tidbx-image-distributed-to-clouds`** (new)\u000a  - Triggers `pingcap-notify-to-update-tcms-tidbx` TaskRun\u000a\u000a### 2. Add image tag validation to ops trigger\u000a\u000aThe ops trigger now validates that **every** image tag matches one of:\u000a- `vX.Y.Z` (e.g. `v7.5.1`)\u000a- `vX.Y.Z-nextgen` (e.g. `v7.5.1-nextgen`)\u000a- `vX.Y.Z-nextgen.YYYYMM.N` (e.g. `v7.5.1-nextgen.202601.1`)\u000a\u000aNon-release tags (e.g. `v7.5.1-rc`, `latest`) are filtered out and will\u000anot trigger ops updates.\u000a\u000a### 3. Enable ops update for dev stage\u000a\u000aThe `update-ops-config` step in `pingcap-notify-to-update-ops-tidbx` now\u000aruns for both `prod` and `dev` stages (previously only `prod`).\u000a\u000a### 4. Update kustomization\u000a\u000a`kustomization.yaml` updated to reference the two new trigger files and\u000aremove the old one.\u000a\u000a## Files changed\u000a\u000a| File | Change |\u000a|------|--------|\u000a|\u000a`tekton/v1/triggers/.../update-ops-when-tidbx-image-distributed-to-clouds.yaml`\u000a| Renamed + tag filter + split |\u000a|\u000a`tekton/v1/triggers/.../update-tcms-when-tidbx-image-distributed-to-clouds.yaml`\u000a| New (TCMS extracted from old trigger) |\u000a| `tekton/v1/tasks/delivery/pingcap-notify-to-update-ops-tidbx.yaml` |\u000aEnable dev stage |\u000a| `tekton/v1/triggers/triggers/env-gcp/kustomization.yaml` | Update\u000areferences |\u000a",
        "date" : "2026-06-18 05:50:45 +0000",
        "id" : "0bb5d8ffa9d082ac3dd81829bc0f7503b4dec0ce",
        "msg" : "refactor(tekton): split tidbx trigger and add tag filter for ops (#4700)",
        "paths" : [
          {
            "editType" : "delete",
            "file" : "tekton/v1/triggers/triggers/env-gcp/_/notify/notified-successful-image-delivery-cloud-tidbx.yaml"
          },
          {
            "editType" : "edit",
            "file" : "tekton/v1/tasks/delivery/pingcap-notify-to-update-ops-tidbx.yaml"
          },
          {
            "editType" : "add",
            "file" : "tekton/v1/triggers/triggers/env-gcp/_/notify/update-ops-when-tidbx-image-distributed-to-clouds.yaml"
          },
          {
            "editType" : "add",
            "file" : "tekton/v1/triggers/triggers/env-gcp/_/notify/update-tcms-when-tidbx-image-distributed-to-clouds.yaml"
          },
          {
            "editType" : "edit",
            "file" : "tekton/v1/triggers/triggers/env-gcp/kustomization.yaml"
          }
        ]
      }
    ],
    "kind" : "git"
  },
  "culprits" : [
    {
      "absoluteUrl" : "https://do.pingcap.net/jenkins/user/noreply",
      "fullName" : "noreply"
    }
  ]
}