From 053a10a2365bd2754c8a4083e16c1cc53b77e17b Mon Sep 17 00:00:00 2001 From: Nicholas Dudfield Date: Thu, 27 Mar 2025 12:38:22 +0700 Subject: [PATCH] [CONAN] clean up comments --- .github/workflows/nix-ga.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/nix-ga.yml b/.github/workflows/nix-ga.yml index 685e8172d..c72ab259d 100644 --- a/.github/workflows/nix-ga.yml +++ b/.github/workflows/nix-ga.yml @@ -253,7 +253,9 @@ jobs: exit 1 fi - # 3. Dummy Downstream Job (Build) - As requested + # These are just here to conform with configured requirements + + # 3. Dummy Downstream Job (Build) build: runs-on: ubuntu-latest needs: build-job # Depends on the matrix build finishing @@ -261,14 +263,12 @@ jobs: - name: Dummy Build run: | echo "Dummy build step - relies upon build-job matrix completion." - echo "Would potentially download artifacts here." - # 4. Dummy Downstream Job (Tests) - As requested + # 4. Dummy Downstream Job (Tests) tests: runs-on: ubuntu-latest needs: build-job # Depends on the matrix build finishing steps: - name: Dummy Tests run: | - echo "Dummy tests step - relies upon build-job matrix completion." - echo "Would potentially download artifacts and run further tests here." \ No newline at end of file + echo "Dummy tests step - relies upon build-job matrix completion." \ No newline at end of file