Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
RUN_BUILD_RUNNER=false
13 changes: 0 additions & 13 deletions .github/no-response.yml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/flutter-package-branch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Flutter Package Branch Workflow

on:
push:
branches:
- '**'
# For now, there's no staging for packages, so run on all branches
#- '!main'
#- '!develop'
#- '!release/*'
workflow_dispatch:

concurrency:
group: flutter-checks-${{ github.ref_name }}
cancel-in-progress: true

jobs:
flutter:
uses: QuickBirdEng/workflows/.github/workflows/flutter-package-branch.yml@main
secrets: inherit
19 changes: 19 additions & 0 deletions .github/workflows/flutter-package-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Flutter Package Release Workflow

on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+-?*\+?*
workflow_dispatch:

concurrency:
group: flutter-checks-${{ github.ref_name }}
cancel-in-progress: true

jobs:
flutter:
uses: QuickBirdEng/workflows/.github/workflows/flutter-package-release.yml@main
with:
package-name: 'flutter_platform_widgets'
slack-channel-id: 'C07M4J4CSP9'
secrets: inherit
10 changes: 10 additions & 0 deletions .github/workflows/soup-approval-verification.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: SOUP - Approval Verification

on:
pull_request_review:
types: [submitted]

jobs:
soups:
uses: QuickBirdEng/workflows/.github/workflows/soup-approval-verification-workflow.yml@main
secrets: inherit
9 changes: 9 additions & 0 deletions .github/workflows/soup-package-cve.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: SOUP - CVE Report

on:
workflow_dispatch:

jobs:
soups:
uses: QuickBirdEng/workflows/.github/workflows/soup-packages-cve-check.yml@main
secrets: inherit
Loading