diff --git a/.github/workflows/ci-skip.yml b/.github/workflows/ci-skip.yml deleted file mode 100644 index 7f869ae7f..000000000 --- a/.github/workflows/ci-skip.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: CI Tests -on: - push: - branches: [main] - paths-ignore: - - '/src/**' - - '/.github/**' - pull_request: - branches: [main] - paths-ignore: - - '/src/**' - - '/.github/**' - -# Intentional no-op used to tell the build system that -# required actions like Test-Suite and Linting have passed -# successfully, even though they were skipped. - -# This hack brought to you by docs.github.com -# https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks - -jobs: - Test-Suite: - runs-on: ubuntu-latest - steps: - - run: 'echo "Build step skipped - no testing required" ' - - Linting: - runs-on: ubuntu-latest - steps: - - run: 'echo "Build step skipped - no linting required" ' \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e255f3999..a15602492 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,14 +2,8 @@ name: CI Tests on: push: branches: [main] - paths: - - '/src/**' - - '/.github/**' pull_request: branches: [main] - paths: - - '/src/**' - - '/.github/**' permissions: # required to retrieve AWS credentials diff --git a/.github/workflows/docgen.yml b/.github/workflows/docgen.yml index 5432dbbe1..e90b57482 100644 --- a/.github/workflows/docgen.yml +++ b/.github/workflows/docgen.yml @@ -2,9 +2,6 @@ name: Document Generation on: push: branches: [main] - paths: - - '/src/**' - - '/.github/**' permissions: contents: write diff --git a/.github/workflows/image.yml b/.github/workflows/image.yml index 9a82fc076..c02797d6c 100644 --- a/.github/workflows/image.yml +++ b/.github/workflows/image.yml @@ -2,9 +2,6 @@ name: Publish Docker Container Images on: push: branches: [main] - paths: - - '/src/**' - - '/.github/**' permissions: contents: read diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e5e8d4f27..dae6cd0af 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -2,14 +2,8 @@ name: Lint on: push: branches: [main] - paths: - - '/src/**' - - '/.github/**' pull_request: branches: [main] - paths: - - '/src/**' - - '/.github/**' permissions: contents: read