File tree Expand file tree Collapse file tree 2 files changed +38
-1
lines changed Expand file tree Collapse file tree 2 files changed +38
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Base (beta)
2
+
3
+ on :
4
+ schedule :
5
+ - cron : ' 0 0 */15 * *' # Runs every 15 days for verifying changes on Flutter beta channel
6
+ push :
7
+ branches : [beta]
8
+ tags :
9
+ - ' [0-9]+.[0-9]+.[0-9]+-*'
10
+
11
+ pull_request :
12
+ branches : [beta]
13
+
14
+ workflow_dispatch :
15
+
16
+ # This ensures that previous jobs for the PR are canceled when PR is updated
17
+ concurrency :
18
+ group : ${{ github.workflow }}-${{ github.ref }}
19
+ cancel-in-progress : true
20
+
21
+ jobs :
22
+ build :
23
+ uses : flutter-form-builder-ecosystem/.github/.github/workflows/minimal-quality.yaml@main
24
+ with :
25
+ fvm-flavor : beta
26
+ example :
27
+ uses : flutter-form-builder-ecosystem/.github/.github/workflows/build-examples.yaml@main
28
+ with :
29
+ fvm-flavor : beta
30
+
31
+
32
+ deployment :
33
+ permissions :
34
+ id-token : write
35
+ uses : flutter-form-builder-ecosystem/.github/.github/workflows/deployment.yaml@main
36
+ if : ${{ github.ref_type == 'tag' }}
37
+ needs : [build, example]
Original file line number Diff line number Diff line change 4
4
push :
5
5
branches : [main]
6
6
tags :
7
- - ' [0-9]+.[0-9]+.[0-9]+* '
7
+ - ' [0-9]+.[0-9]+.[0-9]+'
8
8
9
9
pull_request :
10
10
branches : [main]
You can’t perform that action at this time.
0 commit comments