From 0c1ec5c4cda2d59a0d52cfdc06eb435b03f595aa Mon Sep 17 00:00:00 2001 From: ahmednfwela Date: Sun, 24 Nov 2024 22:15:01 +0200 Subject: [PATCH] chore: added missing bootstrap-no-example: true --- .github/workflows/pana.yaml | 6 ++---- .github/workflows/release-prepare.yml | 2 +- .github/workflows/release-publish.yml | 2 +- .github/workflows/release-tag.yml | 2 +- .github/workflows/tests.yaml | 5 ++--- 5 files changed, 7 insertions(+), 10 deletions(-) diff --git a/.github/workflows/pana.yaml b/.github/workflows/pana.yaml index 7e052e23..79e95b5b 100644 --- a/.github/workflows/pana.yaml +++ b/.github/workflows/pana.yaml @@ -37,12 +37,10 @@ jobs: with: channel: stable cache: true - - uses: ahmednfwela/melos-action@main + - uses: ahmednfwela/melos-action@feat/bootstrap-no-example with: run-bootstrap: true - run-versioning: true - publish-dry-run: true - create-pr: true + bootstrap-no-example: true - name: 📦 Install Pana run: flutter pub global activate pana ${{inputs.pana_version}} diff --git a/.github/workflows/release-prepare.yml b/.github/workflows/release-prepare.yml index 4c14b1c3..9e7be011 100644 --- a/.github/workflows/release-prepare.yml +++ b/.github/workflows/release-prepare.yml @@ -16,7 +16,7 @@ jobs: with: fetch-depth: 0 - uses: subosito/flutter-action@v2 - - uses: ahmednfwela/melos-action@main + - uses: ahmednfwela/melos-action@feat/bootstrap-no-example with: run-bootstrap: true bootstrap-no-example: true diff --git a/.github/workflows/release-publish.yml b/.github/workflows/release-publish.yml index f3d494b4..abf28f26 100644 --- a/.github/workflows/release-publish.yml +++ b/.github/workflows/release-publish.yml @@ -18,7 +18,7 @@ jobs: with: fetch-depth: 0 - uses: subosito/flutter-action@v2 - - uses: ahmednfwela/melos-action@main + - uses: ahmednfwela/melos-action@feat/bootstrap-no-example with: run-bootstrap: true bootstrap-no-example: true diff --git a/.github/workflows/release-tag.yml b/.github/workflows/release-tag.yml index 27f738fa..6f1343a1 100644 --- a/.github/workflows/release-tag.yml +++ b/.github/workflows/release-tag.yml @@ -16,7 +16,7 @@ jobs: with: fetch-depth: 0 - uses: subosito/flutter-action@v2 - - uses: ahmednfwela/melos-action@main + - uses: ahmednfwela/melos-action@feat/bootstrap-no-example with: run-bootstrap: true bootstrap-no-example: true diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index eec50979..c5030757 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -45,11 +45,10 @@ jobs: flutter-version: ${{ matrix.sdk == 'min' && '3.22.0' || '' }} - run: | echo TARGET_DART_SDK=${{ matrix.sdk }} >> $GITHUB_ENV - - name: Prepare dependencies for the project management - run: dart pub get - - uses: ahmednfwela/melos-action@main + - uses: ahmednfwela/melos-action@feat/bootstrap-no-example with: run-bootstrap: true + bootstrap-no-example: true - name: '[Verify step] ✨ Format' if: ${{ matrix.sdk == 'stable' }}