From 7c93b61532beba699b85e67ceb14a174aac2f04b Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Sat, 19 Oct 2024 12:34:56 +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 4058b917..68fdc721 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:45 UTC) schedule: - cron: '45 4 * * *'