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