Skip to content

Commit

Permalink
chore(repo): excludes flutter/dart sdk beta testing on PRs (#3928)
Browse files Browse the repository at this point in the history
  • Loading branch information
haverchuck authored Oct 10, 2023
1 parent 40f20fc commit cbb4fb1
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/dart_dart2js.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
browser:
- chrome
- firefox
# Skips 'beta' tests on PRs
exclude:
- sdk: ${{ (github.event_name == 'pull_request') && 'beta' || 'NONE' }}
steps:
- name: Cache Pub dependencies
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # 3.3.2
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/dart_ddc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
browser:
- chrome
- firefox
# Skips 'beta' tests on PRs
exclude:
- sdk: ${{ (github.event_name == 'pull_request') && 'beta' || 'NONE' }}
steps:
- name: Cache Pub dependencies
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # 3.3.2
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/dart_vm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
- "3.0.1"
- stable
- beta
# Skips 'beta' tests on PRs
exclude:
- sdk: ${{ (github.event_name == 'pull_request') && 'beta' || 'NONE' }}
steps:
- name: Cache Pub dependencies
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # 3.3.2
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/flutter_android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ jobs:
channel:
- stable
- beta
# Skips 'beta' tests on PRs
exclude:
- channel: ${{ (github.event_name == 'pull_request') && 'beta' || 'NONE' }}
steps:
- name: Git Checkout
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # 3.6.0
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/flutter_ios.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ jobs:
channel:
- stable
- beta
# Skips 'beta' tests on PRs
exclude:
- channel: ${{ (github.event_name == 'pull_request') && 'beta' || 'NONE' }}
steps:
- name: Git Checkout
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # 3.6.0
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/flutter_vm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
include:
- channel: "stable"
flutter-version: "3.10.1"
# Skips 'beta' tests on PRs
exclude:
- channel: ${{ (github.event_name == 'pull_request') && 'beta' || 'NONE' }}
steps:
- name: Git Checkout
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # 3.6.0
Expand Down

0 comments on commit cbb4fb1

Please sign in to comment.