From ec652834225f26f85aac3d5b5d7f3f7a62055848 Mon Sep 17 00:00:00 2001 From: toptobes Date: Tue, 31 Mar 2026 16:16:35 -0500 Subject: [PATCH 01/20] initial attempt at docs compilation testing ci --- .github/workflows/test-docs-compilation.yml | 28 +++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/test-docs-compilation.yml diff --git a/.github/workflows/test-docs-compilation.yml b/.github/workflows/test-docs-compilation.yml new file mode 100644 index 0000000..921a3af --- /dev/null +++ b/.github/workflows/test-docs-compilation.yml @@ -0,0 +1,28 @@ +name: Compile against documentation examples + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + test-compilation: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v6 + + - name: Setup .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: "8.0.x" + + - name: Run compilation tests + uses: datastax/astra-client-docs-tests/.github/actions/test-compilation@master + with: + clients: 'csharp' + args: -A csharp='' + docs-repo-token: ${{ secrets.DOC_GITHUB_PAT_CROSS_ORG }} From 04e79cbe2d69b57e9e220645628cf435c5d94e78 Mon Sep 17 00:00:00 2001 From: toptobes Date: Tue, 31 Mar 2026 16:20:43 -0500 Subject: [PATCH 02/20] a --- .github/workflows/test-docs-compilation.yml | 3 ++- .github/workflows/test-hcd.yaml | 12 ++++++------ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test-docs-compilation.yml b/.github/workflows/test-docs-compilation.yml index 921a3af..784c374 100644 --- a/.github/workflows/test-docs-compilation.yml +++ b/.github/workflows/test-docs-compilation.yml @@ -24,5 +24,6 @@ jobs: uses: datastax/astra-client-docs-tests/.github/actions/test-compilation@master with: clients: 'csharp' - args: -A csharp='' + args: -A csharp='' docs-repo-token: ${{ secrets.DOC_GITHUB_PAT_CROSS_ORG }} + docs-repo: '@ske-csharp-client' diff --git a/.github/workflows/test-hcd.yaml b/.github/workflows/test-hcd.yaml index 279fded..43e3c06 100644 --- a/.github/workflows/test-hcd.yaml +++ b/.github/workflows/test-hcd.yaml @@ -1,12 +1,12 @@ name: Run integration tests on HCD + Data API on: - push: - branches: - - main - pull_request: - branches: - - main +# push: +# branches: +# - main +# pull_request: +# branches: +# - main permissions: id-token: write # required for OIDC From 178ba31ae6af7bee09cf9e2908c76c5b4660ffb7 Mon Sep 17 00:00:00 2001 From: toptobes Date: Tue, 31 Mar 2026 16:40:20 -0500 Subject: [PATCH 03/20] instead of failing, make it add breaking label to PR --- .github/workflows/test-docs-compilation.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/test-docs-compilation.yml b/.github/workflows/test-docs-compilation.yml index 784c374..05596e3 100644 --- a/.github/workflows/test-docs-compilation.yml +++ b/.github/workflows/test-docs-compilation.yml @@ -8,6 +8,10 @@ on: branches: - main +permissions: + pull-requests: write + contents: read + jobs: test-compilation: runs-on: ubuntu-latest @@ -21,9 +25,23 @@ jobs: dotnet-version: "8.0.x" - name: Run compilation tests + id: compile_step + continue-on-error: true uses: datastax/astra-client-docs-tests/.github/actions/test-compilation@master with: clients: 'csharp' args: -A csharp='' docs-repo-token: ${{ secrets.DOC_GITHUB_PAT_CROSS_ORG }} docs-repo: '@ske-csharp-client' + + - name: Label PR in failure + uses: actions-ecosystem/action-add-labels@v1 + if: steps.compile_step.outcome == 'failure' && github.event_name == 'pull_request' + with: + labels: Breaks Docs Compilation Tests + + - name: Remove label on success + uses: actions-ecosystem/action-remove-labels@v1 + if: steps.compile_step.outcome == 'success' && github.event_name == 'pull_request' + with: + labels: Breaks Docs Compilation Tests From 10b3f191cc939e0276f72ece00c9a1c220118e45 Mon Sep 17 00:00:00 2001 From: toptobes Date: Tue, 31 Mar 2026 16:51:06 -0500 Subject: [PATCH 04/20] test it breaking --- .github/workflows/test-docs-compilation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-docs-compilation.yml b/.github/workflows/test-docs-compilation.yml index 05596e3..c413e55 100644 --- a/.github/workflows/test-docs-compilation.yml +++ b/.github/workflows/test-docs-compilation.yml @@ -32,7 +32,7 @@ jobs: clients: 'csharp' args: -A csharp='' docs-repo-token: ${{ secrets.DOC_GITHUB_PAT_CROSS_ORG }} - docs-repo: '@ske-csharp-client' +# docs-repo: '@ske-csharp-client' - name: Label PR in failure uses: actions-ecosystem/action-add-labels@v1 From f694f7eae95e4ed95678a8c886797b0b53788d5f Mon Sep 17 00:00:00 2001 From: toptobes Date: Tue, 31 Mar 2026 16:54:44 -0500 Subject: [PATCH 05/20] test it working --- .github/workflows/test-docs-compilation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-docs-compilation.yml b/.github/workflows/test-docs-compilation.yml index c413e55..05596e3 100644 --- a/.github/workflows/test-docs-compilation.yml +++ b/.github/workflows/test-docs-compilation.yml @@ -32,7 +32,7 @@ jobs: clients: 'csharp' args: -A csharp='' docs-repo-token: ${{ secrets.DOC_GITHUB_PAT_CROSS_ORG }} -# docs-repo: '@ske-csharp-client' + docs-repo: '@ske-csharp-client' - name: Label PR in failure uses: actions-ecosystem/action-add-labels@v1 From ffeab31e9e23f3c0379c0f911f263a5f602bbecb Mon Sep 17 00:00:00 2001 From: toptobes Date: Tue, 31 Mar 2026 16:55:59 -0500 Subject: [PATCH 06/20] add concurrency control --- .github/workflows/test-docs-compilation.yml | 49 +++++++++++---------- 1 file changed, 25 insertions(+), 24 deletions(-) diff --git a/.github/workflows/test-docs-compilation.yml b/.github/workflows/test-docs-compilation.yml index 05596e3..cc85b7b 100644 --- a/.github/workflows/test-docs-compilation.yml +++ b/.github/workflows/test-docs-compilation.yml @@ -1,9 +1,6 @@ name: Compile against documentation examples on: - push: - branches: - - main pull_request: branches: - main @@ -12,6 +9,10 @@ permissions: pull-requests: write contents: read +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + jobs: test-compilation: runs-on: ubuntu-latest @@ -19,29 +20,29 @@ jobs: - name: Checkout repository uses: actions/checkout@v6 - - name: Setup .NET - uses: actions/setup-dotnet@v4 - with: - dotnet-version: "8.0.x" + # - name: Setup .NET + # uses: actions/setup-dotnet@v4 + # with: + # dotnet-version: "8.0.x" - - name: Run compilation tests - id: compile_step - continue-on-error: true - uses: datastax/astra-client-docs-tests/.github/actions/test-compilation@master - with: - clients: 'csharp' - args: -A csharp='' - docs-repo-token: ${{ secrets.DOC_GITHUB_PAT_CROSS_ORG }} - docs-repo: '@ske-csharp-client' - - - name: Label PR in failure - uses: actions-ecosystem/action-add-labels@v1 - if: steps.compile_step.outcome == 'failure' && github.event_name == 'pull_request' - with: - labels: Breaks Docs Compilation Tests + # - name: Run compilation tests + # id: compile_step + # continue-on-error: true + # uses: datastax/astra-client-docs-tests/.github/actions/test-compilation@master + # with: + # clients: 'csharp' + # args: -A csharp='' + # docs-repo-token: ${{ secrets.DOC_GITHUB_PAT_CROSS_ORG }} + # docs-repo: '@ske-csharp-client' + + # - name: Label PR on failure + # uses: actions-ecosystem/action-add-labels@v1 + # if: steps.compile_step.outcome == 'failure' && github.event.pull_request + # with: + # labels: 'Breaks Docs Compilation Tests' - name: Remove label on success uses: actions-ecosystem/action-remove-labels@v1 - if: steps.compile_step.outcome == 'success' && github.event_name == 'pull_request' + if: github.event.pull_request with: - labels: Breaks Docs Compilation Tests + labels: 'Breaks Docs Compilation Tests' From f00d55199524ffd05220d077b696bdfe47483bb4 Mon Sep 17 00:00:00 2001 From: toptobes Date: Tue, 31 Mar 2026 19:10:32 -0500 Subject: [PATCH 07/20] please remove the label please --- .github/workflows/test-docs-compilation.yml | 42 ++++++++++----------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/test-docs-compilation.yml b/.github/workflows/test-docs-compilation.yml index cc85b7b..9a1397b 100644 --- a/.github/workflows/test-docs-compilation.yml +++ b/.github/workflows/test-docs-compilation.yml @@ -20,29 +20,29 @@ jobs: - name: Checkout repository uses: actions/checkout@v6 - # - name: Setup .NET - # uses: actions/setup-dotnet@v4 - # with: - # dotnet-version: "8.0.x" - - # - name: Run compilation tests - # id: compile_step - # continue-on-error: true - # uses: datastax/astra-client-docs-tests/.github/actions/test-compilation@master - # with: - # clients: 'csharp' - # args: -A csharp='' - # docs-repo-token: ${{ secrets.DOC_GITHUB_PAT_CROSS_ORG }} - # docs-repo: '@ske-csharp-client' - - # - name: Label PR on failure - # uses: actions-ecosystem/action-add-labels@v1 - # if: steps.compile_step.outcome == 'failure' && github.event.pull_request - # with: - # labels: 'Breaks Docs Compilation Tests' + - name: Setup .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: "8.0.x" + + - name: Run compilation tests + id: compile_step + continue-on-error: true + uses: datastax/astra-client-docs-tests/.github/actions/test-compilation@master + with: + clients: 'csharp' + args: -A csharp='' + docs-repo-token: ${{ secrets.DOC_GITHUB_PAT_CROSS_ORG }} + docs-repo: '@ske-csharp-client' + + - name: Label PR on failure + uses: actions-ecosystem/action-add-labels@v1 + if: steps.compile_step.outcome == 'failure' && github.event.pull_request + with: + labels: 'Breaks Docs Compilation Tests' - name: Remove label on success uses: actions-ecosystem/action-remove-labels@v1 - if: github.event.pull_request + if: steps.compile_step.outcome != 'failure' && github.event.pull_request with: labels: 'Breaks Docs Compilation Tests' From 85dbca1798042db182aeaac983e3ffb3bdba9029 Mon Sep 17 00:00:00 2001 From: toptobes Date: Wed, 1 Apr 2026 12:00:39 -0500 Subject: [PATCH 08/20] should work now From 937495627e696a3899d77ac3eeff9f34542e74dd Mon Sep 17 00:00:00 2001 From: toptobes Date: Wed, 1 Apr 2026 13:17:14 -0500 Subject: [PATCH 09/20] fix dotnet version --- .github/workflows/test-docs-compilation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-docs-compilation.yml b/.github/workflows/test-docs-compilation.yml index 9a1397b..a15b088 100644 --- a/.github/workflows/test-docs-compilation.yml +++ b/.github/workflows/test-docs-compilation.yml @@ -23,7 +23,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: "8.0.x" + dotnet-version: "10.0.x" - name: Run compilation tests id: compile_step From 636c4ebb6dfddfa5e219ad71e1721172676ee687 Mon Sep 17 00:00:00 2001 From: toptobes Date: Wed, 1 Apr 2026 23:35:13 -0500 Subject: [PATCH 10/20] a --- .github/workflows/test-astra.yaml | 4 ++++ .github/workflows/test-docs-compilation.yml | 8 +------- .github/workflows/test-hcd.yaml | 4 ++++ 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test-astra.yaml b/.github/workflows/test-astra.yaml index 885bc04..7f4ae99 100644 --- a/.github/workflows/test-astra.yaml +++ b/.github/workflows/test-astra.yaml @@ -16,6 +16,10 @@ env: ASTRA_DB_TOKEN: ${{ secrets.ASTRA_DB_TOKEN }} ASTRA_DB_DATABASE_NAME: ${{ secrets.ASTRA_DB_DATABASE_NAME }} +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} # should probably be globally unique + cancel-in-progress: true + jobs: test: runs-on: ubuntu-latest diff --git a/.github/workflows/test-docs-compilation.yml b/.github/workflows/test-docs-compilation.yml index a15b088..c2dfec5 100644 --- a/.github/workflows/test-docs-compilation.yml +++ b/.github/workflows/test-docs-compilation.yml @@ -20,18 +20,12 @@ jobs: - name: Checkout repository uses: actions/checkout@v6 - - name: Setup .NET - uses: actions/setup-dotnet@v4 - with: - dotnet-version: "10.0.x" - - name: Run compilation tests id: compile_step - continue-on-error: true uses: datastax/astra-client-docs-tests/.github/actions/test-compilation@master with: clients: 'csharp' - args: -A csharp='' + args: -A csharp='' --allow-failures docs-repo-token: ${{ secrets.DOC_GITHUB_PAT_CROSS_ORG }} docs-repo: '@ske-csharp-client' diff --git a/.github/workflows/test-hcd.yaml b/.github/workflows/test-hcd.yaml index 43e3c06..20c5d35 100644 --- a/.github/workflows/test-hcd.yaml +++ b/.github/workflows/test-hcd.yaml @@ -20,6 +20,10 @@ env: AWS_ECR_REGISTRY: ${{ secrets.AWS_ECR_REGISTRY }} AWS_ECR_HCD_IMAGE_TAG: "1.2.3" +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + jobs: test: env: From 90ee5cc62f35ed74fc1dd153b79d88270c9c0806 Mon Sep 17 00:00:00 2001 From: toptobes Date: Wed, 1 Apr 2026 23:53:10 -0500 Subject: [PATCH 11/20] sigh From 5c0112cf6852f610c45ed44c6c107f8780c710d4 Mon Sep 17 00:00:00 2001 From: toptobes Date: Thu, 2 Apr 2026 00:04:02 -0500 Subject: [PATCH 12/20] im going insane --- .github/workflows/test-docs-compilation.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/test-docs-compilation.yml b/.github/workflows/test-docs-compilation.yml index c2dfec5..4e1872d 100644 --- a/.github/workflows/test-docs-compilation.yml +++ b/.github/workflows/test-docs-compilation.yml @@ -20,6 +20,20 @@ jobs: - name: Checkout repository uses: actions/checkout@v6 + - name: Setup dotnet + uses: actions/setup-dotnet@v5 + with: + dotnet-version: | + 8.0.x + 9.0.x + 10.0.x + + - name: Verify dotnet + shell: bash + run: | + set -x + dotnet --version + - name: Run compilation tests id: compile_step uses: datastax/astra-client-docs-tests/.github/actions/test-compilation@master From a1151898ac9c7bb0b318aaa1d21138fb164e1b9b Mon Sep 17 00:00:00 2001 From: toptobes Date: Thu, 2 Apr 2026 00:06:28 -0500 Subject: [PATCH 13/20] why wont you recognized my installed dotnet versions?????????? --- .github/workflows/test-docs-compilation.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-docs-compilation.yml b/.github/workflows/test-docs-compilation.yml index 4e1872d..fd9bff9 100644 --- a/.github/workflows/test-docs-compilation.yml +++ b/.github/workflows/test-docs-compilation.yml @@ -27,12 +27,13 @@ jobs: 8.0.x 9.0.x 10.0.x - + - name: Verify dotnet shell: bash run: | set -x dotnet --version + dotnet --list-sdks - name: Run compilation tests id: compile_step From 20acf9821aa8301759f41a7198d6ecfbe594441c Mon Sep 17 00:00:00 2001 From: toptobes Date: Thu, 2 Apr 2026 00:09:34 -0500 Subject: [PATCH 14/20] genuinely why??? --- .github/workflows/test-docs-compilation.yml | 25 ++++++++------------- 1 file changed, 9 insertions(+), 16 deletions(-) diff --git a/.github/workflows/test-docs-compilation.yml b/.github/workflows/test-docs-compilation.yml index fd9bff9..8c48561 100644 --- a/.github/workflows/test-docs-compilation.yml +++ b/.github/workflows/test-docs-compilation.yml @@ -19,22 +19,7 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v6 - - - name: Setup dotnet - uses: actions/setup-dotnet@v5 - with: - dotnet-version: | - 8.0.x - 9.0.x - 10.0.x - - - name: Verify dotnet - shell: bash - run: | - set -x - dotnet --version - dotnet --list-sdks - + - name: Run compilation tests id: compile_step uses: datastax/astra-client-docs-tests/.github/actions/test-compilation@master @@ -44,6 +29,14 @@ jobs: docs-repo-token: ${{ secrets.DOC_GITHUB_PAT_CROSS_ORG }} docs-repo: '@ske-csharp-client' + - name: Verify dotnet + shell: bash + run: | + set -x + dotnet --version + dotnet --list-sdks + eval 'dotnet --list-sdks' + - name: Label PR on failure uses: actions-ecosystem/action-add-labels@v1 if: steps.compile_step.outcome == 'failure' && github.event.pull_request From 88f9e7c4748f1afab26df3f8779dd1fc6a739e27 Mon Sep 17 00:00:00 2001 From: toptobes Date: Thu, 2 Apr 2026 00:11:53 -0500 Subject: [PATCH 15/20] asdkfjsladfjlsdajf --- .github/workflows/test-docs-compilation.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test-docs-compilation.yml b/.github/workflows/test-docs-compilation.yml index 8c48561..0d72fbc 100644 --- a/.github/workflows/test-docs-compilation.yml +++ b/.github/workflows/test-docs-compilation.yml @@ -30,6 +30,7 @@ jobs: docs-repo: '@ske-csharp-client' - name: Verify dotnet + if: always() shell: bash run: | set -x From 91444d047e63efee2580d4b71eba53f04de0c838 Mon Sep 17 00:00:00 2001 From: toptobes Date: Thu, 2 Apr 2026 00:15:36 -0500 Subject: [PATCH 16/20] a --- .github/workflows/test-docs-compilation.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test-docs-compilation.yml b/.github/workflows/test-docs-compilation.yml index 0d72fbc..40d0d81 100644 --- a/.github/workflows/test-docs-compilation.yml +++ b/.github/workflows/test-docs-compilation.yml @@ -34,8 +34,10 @@ jobs: shell: bash run: | set -x + which dotnet dotnet --version dotnet --list-sdks + eval 'which dotnet' eval 'dotnet --list-sdks' - name: Label PR on failure From 8623d32c67a1e7ee466cc0693fd1f2309e75b8d5 Mon Sep 17 00:00:00 2001 From: toptobes Date: Thu, 2 Apr 2026 00:34:00 -0500 Subject: [PATCH 17/20] a --- .github/workflows/test-docs-compilation.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-docs-compilation.yml b/.github/workflows/test-docs-compilation.yml index 40d0d81..2ca208e 100644 --- a/.github/workflows/test-docs-compilation.yml +++ b/.github/workflows/test-docs-compilation.yml @@ -19,7 +19,11 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v6 - + + - name: Force .NET 10 + run: | + echo '{"sdk": { "version": "10.0.201", "rollForward": "latestFeature" } }' > global.json + - name: Run compilation tests id: compile_step uses: datastax/astra-client-docs-tests/.github/actions/test-compilation@master From c3d2e0bfbe9eb9dcd3deb723820278f891606fb4 Mon Sep 17 00:00:00 2001 From: toptobes Date: Thu, 2 Apr 2026 00:50:01 -0500 Subject: [PATCH 18/20] ... --- .github/workflows/test-docs-compilation.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test-docs-compilation.yml b/.github/workflows/test-docs-compilation.yml index 2ca208e..092f5f5 100644 --- a/.github/workflows/test-docs-compilation.yml +++ b/.github/workflows/test-docs-compilation.yml @@ -33,25 +33,20 @@ jobs: docs-repo-token: ${{ secrets.DOC_GITHUB_PAT_CROSS_ORG }} docs-repo: '@ske-csharp-client' - - name: Verify dotnet - if: always() + - name: Confusion shell: bash run: | set -x - which dotnet - dotnet --version - dotnet --list-sdks - eval 'which dotnet' - eval 'dotnet --list-sdks' + dotnet --info - name: Label PR on failure uses: actions-ecosystem/action-add-labels@v1 - if: steps.compile_step.outcome == 'failure' && github.event.pull_request + if: steps.compile_step.outputs.failed_tests == 'true' && github.event.pull_request with: labels: 'Breaks Docs Compilation Tests' - name: Remove label on success uses: actions-ecosystem/action-remove-labels@v1 - if: steps.compile_step.outcome != 'failure' && github.event.pull_request + if: steps.compile_step.outputs.failed_tests == 'false' && github.event.pull_request with: labels: 'Breaks Docs Compilation Tests' From 4a3e80284541ca7f8b0d0693fe5e61f5ae4c144f Mon Sep 17 00:00:00 2001 From: toptobes Date: Fri, 3 Apr 2026 13:46:04 -0500 Subject: [PATCH 19/20] please work --- .github/workflows/test-docs-compilation.yml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/.github/workflows/test-docs-compilation.yml b/.github/workflows/test-docs-compilation.yml index 092f5f5..146e425 100644 --- a/.github/workflows/test-docs-compilation.yml +++ b/.github/workflows/test-docs-compilation.yml @@ -20,25 +20,16 @@ jobs: - name: Checkout repository uses: actions/checkout@v6 - - name: Force .NET 10 - run: | - echo '{"sdk": { "version": "10.0.201", "rollForward": "latestFeature" } }' > global.json - - name: Run compilation tests id: compile_step uses: datastax/astra-client-docs-tests/.github/actions/test-compilation@master with: clients: 'csharp' - args: -A csharp='' --allow-failures + args: -A csharp='' + allow-failures: 'true' docs-repo-token: ${{ secrets.DOC_GITHUB_PAT_CROSS_ORG }} docs-repo: '@ske-csharp-client' - - name: Confusion - shell: bash - run: | - set -x - dotnet --info - - name: Label PR on failure uses: actions-ecosystem/action-add-labels@v1 if: steps.compile_step.outputs.failed_tests == 'true' && github.event.pull_request From ee6c224b0a43e67857d9b6ffd0b684f794b72d3b Mon Sep 17 00:00:00 2001 From: toptobes Date: Fri, 3 Apr 2026 15:15:05 -0500 Subject: [PATCH 20/20] now? --- .github/workflows/test-docs-compilation.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-docs-compilation.yml b/.github/workflows/test-docs-compilation.yml index 146e425..c559fdc 100644 --- a/.github/workflows/test-docs-compilation.yml +++ b/.github/workflows/test-docs-compilation.yml @@ -21,7 +21,7 @@ jobs: uses: actions/checkout@v6 - name: Run compilation tests - id: compile_step + id: compile-step uses: datastax/astra-client-docs-tests/.github/actions/test-compilation@master with: clients: 'csharp' @@ -32,12 +32,12 @@ jobs: - name: Label PR on failure uses: actions-ecosystem/action-add-labels@v1 - if: steps.compile_step.outputs.failed_tests == 'true' && github.event.pull_request + if: steps.compile-step.outputs.failed_tests == 'true' && github.event.pull_request with: labels: 'Breaks Docs Compilation Tests' - name: Remove label on success uses: actions-ecosystem/action-remove-labels@v1 - if: steps.compile_step.outputs.failed_tests == 'false' && github.event.pull_request + if: steps.compile-step.outputs.failed_tests == 'false' && github.event.pull_request with: labels: 'Breaks Docs Compilation Tests'