From dc9af32d0341b4fb656bfd61844de907559ef109 Mon Sep 17 00:00:00 2001 From: Joe Richardson Date: Wed, 25 Sep 2024 10:42:21 -0400 Subject: [PATCH] ci: removed old file, added flag to lint --- .github/workflows/lint.yaml | 4 +-- .../workflows/pull-request-conditionals.yaml | 30 ------------------- 2 files changed, 2 insertions(+), 32 deletions(-) delete mode 100644 .github/workflows/pull-request-conditionals.yaml diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 70fece3..3b78069 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -28,8 +28,8 @@ jobs: - name: Install lint deps run: | - uds run lint:deps + uds run lint:deps --no-progress - name: Lint the repository run: | - uds run lint:yaml + uds run lint:yaml --no-progress diff --git a/.github/workflows/pull-request-conditionals.yaml b/.github/workflows/pull-request-conditionals.yaml deleted file mode 100644 index 9de8ac5..0000000 --- a/.github/workflows/pull-request-conditionals.yaml +++ /dev/null @@ -1,30 +0,0 @@ -name: Setup - -# This workflow is triggered on pull requests to the main branch. -on: - pull_request: - paths: - - ".github/**" - - "bundle/**" - - "values/**" - - "tasks/**" - - "tests/**" - - "tasks.yaml" - - "zarf.yaml" - -# Permissions for the GITHUB_TOKEN used by the workflow. -permissions: - id-token: write # Needed for OIDC-related operations. - contents: read # Allows reading the content of the repository. - pull-requests: read # Allows reading pull request metadata. - -# Default settings for all run commands in the workflow jobs. -defaults: - run: - shell: bash -e -o pipefail {0} # Ensures that scripts fail on error and pipefail is set. - -jobs: - run-test: - name: Test - uses: ./.github/workflows/test.yaml - secrets: inherit