From 8b1942c229166a549def90825e94eba2c07c2f71 Mon Sep 17 00:00:00 2001 From: Jan Calanog Date: Tue, 28 May 2024 09:20:38 +0200 Subject: [PATCH] Add test check if no action source code is touched (#9) * Add test check if no action source code is touched * Fix --- .github/workflows/no-test.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/no-test.yml diff --git a/.github/workflows/no-test.yml b/.github/workflows/no-test.yml new file mode 100644 index 00000000..78d99bbe --- /dev/null +++ b/.github/workflows/no-test.yml @@ -0,0 +1,21 @@ +name: no-test + +on: + pull_request: + branches: + - main + paths: + - '**' + - '!.github/workflows/test-*' + - '!git/setup/**' + - '!google/auth/**' + - '!updatecli/run/**' + +permissions: + contents: read + +jobs: + test: + runs-on: ubuntu-latest + steps: + - run: echo "No test to run"