From 485ac00e5e264cb7e38ba9b2a56df461d2fcd9da Mon Sep 17 00:00:00 2001 From: Laurents Meyer Date: Mon, 4 Dec 2023 15:34:51 +0100 Subject: [PATCH] Return successful status if only MD files changed (because in those cases, no other CI runs). --- .github/workflows/pull_request_without_ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/pull_request_without_ci.yml diff --git a/.github/workflows/pull_request_without_ci.yml b/.github/workflows/pull_request_without_ci.yml new file mode 100644 index 0000000..bc17362 --- /dev/null +++ b/.github/workflows/pull_request_without_ci.yml @@ -0,0 +1,17 @@ +name: PullRequestWithoutCi +on: + pull_request: + branches: + - '**' + paths: + - '!**' + - '**.md' +jobs: + Status: + runs-on: ubuntu-latest + steps: + - name: 'Final Status' + shell: pwsh + run: | + echo 'All workflows succeeded.' + exit 0