From ffb002b3f7c27204b258ef1eb9b7b71f8ed0f17e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 18 Oct 2023 11:54:45 +0000 Subject: [PATCH 1/2] chore(deps): bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/review.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/review.yml b/.github/workflows/review.yml index c1c669a..6b84214 100644 --- a/.github/workflows/review.yml +++ b/.github/workflows/review.yml @@ -30,7 +30,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Check branch naming run: | @@ -53,7 +53,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - uses: subosito/flutter-action@v2 with: From f65307621c262f8969a648d3c0b53466dee2388b Mon Sep 17 00:00:00 2001 From: Jordy Hershel Igondjo <49708438+JordyHers@users.noreply.github.com> Date: Tue, 9 Jan 2024 09:41:56 +0100 Subject: [PATCH 2/2] Update review.yml --- .github/workflows/review.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/review.yml b/.github/workflows/review.yml index 6b84214..2a930f3 100644 --- a/.github/workflows/review.yml +++ b/.github/workflows/review.yml @@ -30,14 +30,14 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v3 - name: Check branch naming run: | branch_name="${{ github.event.pull_request.head.ref }}" regex="^(feature|bugfix|hotfix|chore|merge|MERGE)\/[a-zA-Z0-9\-]+$" - if [[ ! $branch_name =~ $regex && "$branch_name" != "master" && "$branch_name" != "dev" ]]; then + if [[ ! $branch_name =~ $regex && "$branch_name" != "master" && "$branch_name" != "dev" && ! "$branch_name" =~ ^dependabot/ ]]; then echo "error: Branch name does not follow naming convention" echo "Please follow the correct format: /" echo "Example: feature/sc-3000-create-new-button-component or chore/my-feature" @@ -53,7 +53,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v3 - uses: subosito/flutter-action@v2 with: