From 3756b5e07e752040957fed49d0661beb758972ba Mon Sep 17 00:00:00 2001 From: Jan Kowalleck Date: Fri, 25 Oct 2024 15:21:01 +0200 Subject: [PATCH] chore: test unpinned daily Signed-off-by: Jan Kowalleck --- .github/workflows/python.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 444ea2e2..7b854562 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -4,14 +4,14 @@ name: Python CI on: push: - branches: ["main"] + branches: ["main", "next"] + tags: [ 'v*' ] pull_request: - branches-ignore: ['dependabot/**'] workflow_dispatch: schedule: - # schedule weekly tests, since some dependencies are not intended to be pinned - # this means: at 23:42 on Fridays - - cron: '42 23 * * 5' + # schedule daily tests, since some dependencies are not intended to be pinned + # this means: at 23:42 every day + - cron: '42 23 * * *' concurrency: group: ${{ github.workflow }}-${{ github.ref }}