From 63469e71e3ed382aa09eaf59bdf68b2032a12095 Mon Sep 17 00:00:00 2001 From: Austin Vazquez <55906459+austinvazquez@users.noreply.github.com> Date: Fri, 21 Jun 2024 08:06:37 -0700 Subject: [PATCH] ci: match job name to branch protection rule (#988) Issue #, if available: #986 is currently blocked on merge due to required CI job checks not matching the expected naming in the branch protection ruleset. The `go-linter` job was renamed in #649 to `lint` and `unit-test` and `gen-code-no-diff` were expanded for the Windows platform. *Description of changes:* This change updates the docs CI job to match the expected job names in the branch protection ruleset. *Testing done:* Manually verified the branch protection ruleset name matches. - [x] I've reviewed the guidance in CONTRIBUTING.md #### License Acceptance By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license. Signed-off-by: Austin Vazquez --- .github/workflows/ci-docs.yaml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-docs.yaml b/.github/workflows/ci-docs.yaml index f571544ff..ab7086900 100644 --- a/.github/workflows/ci-docs.yaml +++ b/.github/workflows/ci-docs.yaml @@ -45,14 +45,21 @@ jobs: git secrets --scan-history gen-code-no-diff: - runs-on: ubuntu-latest + strategy: + matrix: + os: [macos-latest, windows-latest] + runs-on: ${{ matrix.os }} steps: - run: echo "Skipping CI for docs & contrib files" unit-tests: - runs-on: ubuntu-latest + strategy: + matrix: + os: [macos-latest, windows-latest] + runs-on: ${{ matrix.os }} steps: - run: echo "Skipping CI for docs & contrib files" go-linter: + name: lint runs-on: ubuntu-latest steps: - run: echo "Skipping CI for docs & contrib files"