From 208222383cc37b0334cdcb538fc88fd9b368fe33 Mon Sep 17 00:00:00 2001 From: Scott Henderson Date: Mon, 24 Jun 2024 16:33:57 -0700 Subject: [PATCH] fix path-ignore indentation (#277) --- .github/workflows/main.yaml | 4 ++-- .github/workflows/pull_request.yaml | 4 ++-- .github/workflows/qaqc.yaml | 2 ++ 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 4d386687..2458f1d9 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -3,8 +3,8 @@ name: Deploy Website to GitHub Pages on: push: branches: main - paths-ignore: - - ".devcontainer/**" + paths-ignore: + - ".devcontainer/**" # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages permissions: diff --git a/.github/workflows/pull_request.yaml b/.github/workflows/pull_request.yaml index faf30561..2e4a8f43 100644 --- a/.github/workflows/pull_request.yaml +++ b/.github/workflows/pull_request.yaml @@ -3,8 +3,8 @@ name: Pull Request Build on: pull_request: types: [opened, synchronize, reopened, closed] - paths-ignore: - - ".devcontainer/**" + paths-ignore: + - ".devcontainer/**" concurrency: group: ${{ github.workflow }}-${{ github.ref }} diff --git a/.github/workflows/qaqc.yaml b/.github/workflows/qaqc.yaml index 8686b7b4..ea4d17e0 100644 --- a/.github/workflows/qaqc.yaml +++ b/.github/workflows/qaqc.yaml @@ -4,6 +4,8 @@ on: pull_request: branches: - main + paths-ignore: + - ".devcontainer/**" concurrency: group: ${{ github.workflow }}-${{ github.ref }}