Skip to content

Commit

Permalink
chore: disabled check-branch CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
chapati23 committed Feb 18, 2025
1 parent ea71f84 commit 2bbeb65
Showing 1 changed file with 22 additions and 19 deletions.
41 changes: 22 additions & 19 deletions .github/workflows/check-branch.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,24 @@
name: Prevent Non-Release/Non-Hotfix PRs to Main
# NOTE: @chapati23 disabled this check today on 18.02.2025 as a conscious tradeoff to prioritize simpler and faster delivery
# over a slower release cycle with more checks. We can turn it back on if we notice that we have more production issues but
# for the moment we don't have a lot of users on this DApp so should prioritize faster improvements until we reach greater scale.

on:
pull_request:
branches:
- main
pull_request_target:
branches:
- main
# name: Prevent Non-Release/Non-Hotfix PRs to Main
# on:
# pull_request:
# branches:
# - main
# pull_request_target:
# branches:
# - main

jobs:
check-target-branch:
if: github.base_ref == 'main'
runs-on: ubuntu-latest
steps:
- name: Check if the source branch is a release branch
run: |
if [[ "${{ github.head_ref }}" != release/* && "${{ github.head_ref }}" != hotfix/* ]]; then
echo "Only release and hotfix branches can be merged into the main branch."
exit 1
fi
# jobs:
# check-target-branch:
# if: github.base_ref == 'main'
# runs-on: ubuntu-latest
# steps:
# - name: Check if the source branch is a release branch
# run: |
# if [[ "${{ github.head_ref }}" != release/* && "${{ github.head_ref }}" != hotfix/* ]]; then
# echo "Only release and hotfix branches can be merged into the main branch."
# exit 1
# fi

0 comments on commit 2bbeb65

Please sign in to comment.