From b93ef467023a6cddf930b83c3c856285a80cf5b5 Mon Sep 17 00:00:00 2001 From: Aditya Kumar <117935160+AS1100K@users.noreply.github.com> Date: Thu, 6 Feb 2025 19:30:30 +0530 Subject: [PATCH] Made GitHub Actions run on every pull request irrespective of the file changed --- .github/workflows/check-examples.yml | 7 ++----- .github/workflows/ci.yml | 3 --- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/check-examples.yml b/.github/workflows/check-examples.yml index a6d02da..97f0a00 100644 --- a/.github/workflows/check-examples.yml +++ b/.github/workflows/check-examples.yml @@ -4,13 +4,10 @@ on: push: branches: [main] paths: - - '**.rs' - - '**.toml' + - "**.rs" + - "**.toml" pull_request: branches: [main] - paths: - - '**.rs' - - '**.toml' jobs: # Examples that will work with feature bot diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d6dc79d..42f9a02 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,9 +8,6 @@ on: - "**.toml" pull_request: branches: [main] - paths: - - "**.rs" - - "**.toml" env: CARGO_TERM_COLOR: always