We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9020f0 commit 3756b5eCopy full SHA for 3756b5e
.github/workflows/python.yml
@@ -4,14 +4,14 @@ name: Python CI
4
5
on:
6
push:
7
- branches: ["main"]
+ branches: ["main", "next"]
8
+ tags: [ 'v*' ]
9
pull_request:
- branches-ignore: ['dependabot/**']
10
workflow_dispatch:
11
schedule:
12
- # schedule weekly tests, since some dependencies are not intended to be pinned
13
- # this means: at 23:42 on Fridays
14
- - 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 * * *'
15
16
concurrency:
17
group: ${{ github.workflow }}-${{ github.ref }}
0 commit comments