We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d3d9ad commit 357a05cCopy full SHA for 357a05c
.github/workflows/cypress.yml
@@ -7,9 +7,9 @@ on:
7
branches: [ 'main', 'stable-*', 'feature/*' ]
8
push:
9
10
- # daily on main
+ # weekly on stable-4.7
11
schedule:
12
- - cron: '30 5 * * *'
+ - cron: '30 5 * * 1'
13
14
concurrency:
15
group: cypress-${{ github.ref }}
@@ -19,8 +19,8 @@ jobs:
19
cypress:
20
runs-on: ubuntu-latest
21
env:
22
- # base of a PR, or pushed-to branch outside PRs, or main
23
- BRANCH: ${{ github.base_ref || github.ref || 'refs/heads/main' }}
+ # base of a PR, or pushed-to branch outside PRs, or stable-4.7
+ BRANCH: ${{ github.base_ref || github.ref || 'refs/heads/stable-4.7' }}
24
25
strategy:
26
fail-fast: false
0 commit comments