From 5fdbd52303a419b4033b26cebc6f8cfdcd50c763 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Sat, 19 Oct 2024 12:34:51 +0200 Subject: [PATCH] Fix reuse workflow branches. --- .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 7c15c11..b552396 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 05:15 UTC) schedule: - cron: '15 5 * * *'