We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3948ae commit 6f78df7Copy full SHA for 6f78df7
.github/workflows/flutter.yml
@@ -1,24 +1,19 @@
1
name: Flutter
2
3
on:
4
- workflow_call:
5
- inputs:
6
- runs-on:
7
- description: 'Operating system'
8
- required: true
9
- default: 'ubuntu-latest'
10
- type: string
11
- version:
12
- description: 'Flutter version'
13
14
- default: 'latest'
15
16
- channel:
17
- description: 'Flutter channel'
18
19
- default: 'stable'
20
21
-
+ push:
+ branches: [main, v*]
+ pull_request:
+ schedule:
+ # https://crontab.guru/#40_10_*_*_*
+ - cron: '40 10 * * *'
+ workflow_dispatch:
+
+concurrency:
+ group: ${{ github.workflow }}-${{ github.ref }}
+ cancel-in-progress: true
22
jobs:
23
stable:
24
runs-on: ${{ matrix.runs-on }}
0 commit comments