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