From 510bc36a779e68c3492044ec4018b6bc5067cd6f Mon Sep 17 00:00:00 2001 From: Archana Shinde Date: Wed, 13 Dec 2023 21:22:36 -0800 Subject: [PATCH] github-actions: Remove ignore paths for required CI checks If a PR contains files from the ignore-paths, these actions do not run as intended. However, the actions are make as required. And there does not seem to be a way to mark these as non-required in that case. As a result a PR containing the files from the ignore-paths remains stalled. Hence remove the ignore-paths until github provides a way to mark actions that are skipped due to ignore-paths as non-required/passed. Fixes: #8663 Signed-off-by: Archana Shinde --- .github/workflows/cargo-deny-runner.yaml | 1 - .github/workflows/ci-on-push.yaml | 2 -- .github/workflows/darwin-tests.yaml | 1 - 3 files changed, 4 deletions(-) diff --git a/.github/workflows/cargo-deny-runner.yaml b/.github/workflows/cargo-deny-runner.yaml index f225fdc101..608861d426 100644 --- a/.github/workflows/cargo-deny-runner.yaml +++ b/.github/workflows/cargo-deny-runner.yaml @@ -6,7 +6,6 @@ on: - edited - reopened - synchronize - paths-ignore: [ '**.md', '**.png', '**.jpg', '**.jpeg', '**.svg', '/docs/**' ] concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} diff --git a/.github/workflows/ci-on-push.yaml b/.github/workflows/ci-on-push.yaml index 59a297b784..c58b2330c1 100644 --- a/.github/workflows/ci-on-push.yaml +++ b/.github/workflows/ci-on-push.yaml @@ -13,8 +13,6 @@ on: - synchronize - reopened - labeled - paths-ignore: - - 'docs/**' concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} diff --git a/.github/workflows/darwin-tests.yaml b/.github/workflows/darwin-tests.yaml index 302e2328c4..570fc8250b 100644 --- a/.github/workflows/darwin-tests.yaml +++ b/.github/workflows/darwin-tests.yaml @@ -5,7 +5,6 @@ on: - edited - reopened - synchronize - paths-ignore: [ '**.md', '**.png', '**.jpg', '**.jpeg', '**.svg', '/docs/**' ] concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}