Skip to content

Commit c8f9a3c

Browse files
author
Rinzin Wangchuk
committed
add workflows and soup workflows
1 parent c5a3e77 commit c8f9a3c

File tree

6 files changed

+59
-13
lines changed

6 files changed

+59
-13
lines changed

.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
RUN_BUILD_RUNNER=false

.github/no-response.yml

Lines changed: 0 additions & 13 deletions
This file was deleted.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Flutter Package Branch Workflow
2+
3+
on:
4+
push:
5+
branches:
6+
- '**'
7+
# For now, there's no staging for packages, so run on all branches
8+
#- '!main'
9+
#- '!develop'
10+
#- '!release/*'
11+
workflow_dispatch:
12+
13+
concurrency:
14+
group: flutter-checks-${{ github.ref_name }}
15+
cancel-in-progress: true
16+
17+
jobs:
18+
flutter:
19+
uses: QuickBirdEng/workflows/.github/workflows/flutter-package-branch.yml@main
20+
secrets: inherit
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Flutter Package Release Workflow
2+
3+
on:
4+
push:
5+
tags:
6+
- v[0-9]+.[0-9]+.[0-9]+-?*\+?*
7+
workflow_dispatch:
8+
9+
concurrency:
10+
group: flutter-checks-${{ github.ref_name }}
11+
cancel-in-progress: true
12+
13+
jobs:
14+
flutter:
15+
uses: QuickBirdEng/workflows/.github/workflows/flutter-package-release.yml@main
16+
with:
17+
package-name: 'flutter_platform_widgets'
18+
slack-channel-id: 'C07M4J4CSP9'
19+
secrets: inherit
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: SOUP - Approval Verification
2+
3+
on:
4+
pull_request_review:
5+
types: [submitted]
6+
7+
jobs:
8+
soups:
9+
uses: QuickBirdEng/workflows/.github/workflows/soup-approval-verification-workflow.yml@main
10+
secrets: inherit
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: SOUP - CVE Report
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
soups:
8+
uses: QuickBirdEng/workflows/.github/workflows/soup-packages-cve-check.yml@main
9+
secrets: inherit

0 commit comments

Comments
 (0)