From 535c0efd22a3f4a664735e40079447ee1fef4dd4 Mon Sep 17 00:00:00 2001 From: "Arrobo, Gabriel" Date: Thu, 26 Mar 2026 12:04:45 -0700 Subject: [PATCH 1/2] Split make target in its individual steps such that it is easier to see what step fails Signed-off-by: Arrobo, Gabriel --- .github/workflows/publish-docs.yml | 2 +- .github/workflows/validate-docs.yml | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index 971fee4..9e4fa5b 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -44,4 +44,4 @@ jobs: - - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file + - run: echo "🍏 This job's status is ${{ job.status }}." diff --git a/.github/workflows/validate-docs.yml b/.github/workflows/validate-docs.yml index fa90af3..1222d90 100644 --- a/.github/workflows/validate-docs.yml +++ b/.github/workflows/validate-docs.yml @@ -10,8 +10,14 @@ jobs: - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - name: Check out repo uses: actions/checkout@v6 - - name: Validate reST source - run: make test + - name: Validate reST source with doc8 + run: make doc8 + - name: Validate dictionary ordering + run: make dict-check + - name: Validate spelling + run: make spelling + - name: Validate links + run: make linkcheck - name: Build docs run: make html - name: List built files From 9794938be64605727cacce08fd23692830d21bf6 Mon Sep 17 00:00:00 2001 From: "Arrobo, Gabriel" Date: Thu, 26 Mar 2026 12:09:44 -0700 Subject: [PATCH 2/2] Fix codeowners format Signed-off-by: Arrobo, Gabriel --- .github/CODEOWNERS | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index d3692f1..9e4ce42 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,2 +1 @@ -* @opennetworkinglab/aether -* @opennetworkinglab/intel-labs +* @opennetworkinglab/aether @opennetworkinglab/intel-labs