From dc62ffe504371bece72f2f67dfce1870773294e4 Mon Sep 17 00:00:00 2001 From: Vinish Reddy Date: Mon, 20 Jul 2026 16:40:22 -0700 Subject: [PATCH] [infra] Give Maven CI Build and License Check unique job names Both workflows used a job named "build", so both reported the same status-check context and could not be required distinctly. Set unique job names so branch protection can require each. Pairs with the main .asf.yaml change that marks these checks required for branch-0.4. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/mvn-ci-build.yml | 1 + .github/workflows/mvn-license-check.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/mvn-ci-build.yml b/.github/workflows/mvn-ci-build.yml index 5e3e1b763..3a7050de3 100644 --- a/.github/workflows/mvn-ci-build.yml +++ b/.github/workflows/mvn-ci-build.yml @@ -33,6 +33,7 @@ on: jobs: build: + name: Maven CI Build runs-on: ubuntu-latest timeout-minutes: 30 steps: diff --git a/.github/workflows/mvn-license-check.yml b/.github/workflows/mvn-license-check.yml index 970e982df..193bc286d 100644 --- a/.github/workflows/mvn-license-check.yml +++ b/.github/workflows/mvn-license-check.yml @@ -33,6 +33,7 @@ on: jobs: build: + name: License Check runs-on: ubuntu-latest steps: - uses: actions/checkout@v6