Skip to content

Commit

Permalink
refactor: remove develop branches from PR workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
wlgh1553 committed Nov 7, 2024
1 parent 265e199 commit 6c9f9c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Lint & Format

on:
pull_request:
branches: ['main', 'develop-fe', 'develop-be']
branches: ['main']

jobs:
lint:
Expand Down Expand Up @@ -42,4 +42,4 @@ jobs:
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
branch_name="${{ github.head_ref }}"
git diff --quiet || { git add . && git commit -m 'chore: auto-fix linting and formatting issues' && git push origin "$branch_name"; }
git diff --quiet || { git add . && git commit -m 'chore: auto-fix linting and formatting issues' && git push origin "$branch_name"; }

0 comments on commit 6c9f9c7

Please sign in to comment.