-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Add flutter-pub-update.yml to 2.1 branch as well
Due to a GH limitation, scheduled workflows only run on the default branch
- Loading branch information
Showing
1 changed file
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# SPDX-FileCopyrightText: 2024 Klarälvdalens Datakonsult AB, a KDAB Group company <[email protected]> | ||
# | ||
# SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only | ||
|
||
# On demand flutter action to trigger flutter pub upgrade | ||
|
||
name: (Scheduled) Runs flutter pub upgrade | ||
|
||
on: | ||
schedule: | ||
- cron: '0 3 * * *' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: true | ||
|
||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
ref: main # always main branch | ||
|
||
- name: Install dependencies | ||
run: | | ||
sudo apt update -qq | ||
sudo apt install wget curl file unzip zip xz-utils -y | ||
- name: Install Dart SDK | ||
uses: dart-lang/setup-dart@v1 | ||
|
||
- name: Setup git author name | ||
uses: fregante/setup-git-user@v2 | ||
|
||
- name: pub upgrade on flutter_tests_embedder | ||
run: | | ||
cd tests/flutter_tests_embedder/ | ||
flutter pub upgrade | ||
- name: pub upgrade on flutter_tests_embedder | ||
run: | | ||
cd tests/flutter_tests_embedder/ | ||
flutter pub upgrade --major-versions | ||
- name: pub upgrade on examples | ||
run: | | ||
cd examples/flutter | ||
flutter pub upgrade --major-versions | ||
- name: pub upgrade on src/flutter | ||
run: | | ||
cd src/flutter | ||
flutter pub upgrade --major-versions | ||
- name: pub upgrade on src/flutter/dart | ||
run: | | ||
cd src/flutter/dart | ||
flutter pub upgrade --major-versions | ||
- name: Create PR | ||
run: sh src/flutter/create_pub_upgrade_pr.sh | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |