From 7e82da0e8b6e211274b2ddfe953338c9202c57b0 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Sat, 19 Oct 2024 12:34:47 +0200 Subject: [PATCH] Fix reuse workflow branches. (cherry picked from commit 309a30e9be35cfaee83febd16fb8ddfb12c226fb) --- .github/workflows/reuse.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/reuse.yml b/.github/workflows/reuse.yml index f37562d6..5816823d 100644 --- a/.github/workflows/reuse.yml +++ b/.github/workflows/reuse.yml @@ -7,9 +7,13 @@ name: Verify REUSE on: push: - branches: [main] + branches: + - main + - stable-* pull_request: - branches: [main] + branches: + - main + - stable-* # Run CI once per day (at 04:30 UTC) schedule: - cron: '30 4 * * *'