From 13dcefba18f2af2040c82837c8f5470ed50bf02b Mon Sep 17 00:00:00 2001 From: Ads Dawson <104169244+GangGreenTemperTatum@users.noreply.github.com> Date: Mon, 25 Nov 2024 08:29:52 -0500 Subject: [PATCH] fix: try skip categories in workflow --- .github/workflows/validate_robopages.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/validate_robopages.yml b/.github/workflows/validate_robopages.yml index b379e82..7fae42f 100644 --- a/.github/workflows/validate_robopages.yml +++ b/.github/workflows/validate_robopages.yml @@ -44,15 +44,14 @@ jobs: docker pull dreadnode/robopages:latest - # Run validation with Docker socket mounted + # Run validation with Docker socket mounted and skip categories validation docker run --rm \ -v $(pwd):/workspace \ -v /var/run/docker.sock:/var/run/docker.sock \ -w /workspace \ --privileged \ - dreadnode/robopages:latest validate --path "$(printf '%q' "$file")" --skip-docker + dreadnode/robopages:latest validate --path "$(printf '%q' "$file")" --skip-docker --skip-categories } - # Get changed files using GitHub's provided variables changed_files=$(git diff --name-only ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }} | \ grep '\.yml$' | grep -v '^.github/' || true) @@ -91,4 +90,4 @@ jobs: pull_number: context.issue.number, body: body, event: 'COMMENT' - }); \ No newline at end of file + });