From 5b2348041da94cba144460a9f46ba03194802141 Mon Sep 17 00:00:00 2001 From: Angela Tran Date: Tue, 4 Jun 2024 10:52:02 -0500 Subject: [PATCH] ci: remove path filters from triggers we want the migration check to be a required check but not for it to block PRs that don't match the path filter, so we have to remove the path filters --- .github/workflows/check-makemigrations.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/check-makemigrations.yml b/.github/workflows/check-makemigrations.yml index f79537f60..dacef159d 100644 --- a/.github/workflows/check-makemigrations.yml +++ b/.github/workflows/check-makemigrations.yml @@ -1,11 +1,5 @@ name: Check for up-to-date Django migrations -on: - pull_request: - paths: - - "benefits/**" - push: - paths: - - "benefits/**" +on: [push, pull_request] jobs: check-makemigrations: