Skip to content
This repository has been archived by the owner on Nov 29, 2024. It is now read-only.

Commit

Permalink
chore: Run PR title check independently on rest of CI (#413)
Browse files Browse the repository at this point in the history
* Update ci.yml

* Update and rename pr-title-checker.yml to pr-title-check.yml
  • Loading branch information
Sivakajan-tech authored Aug 20, 2024
1 parent 5e10fa0 commit cc77790
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: CI Pipeline

on:
pull_request:
types: [ opened, synchronize, reopened, edited ]
branches:
- 'main'
- 'release/[0-9]+.[0-9]+'
Expand All @@ -13,10 +12,6 @@ on:
tags: ['v[0-9]+.[0-9]+.[0-9]+']

jobs:
pr_tile_check:
uses: ./.github/workflows/pr-title-checker.yml
if: ${{ github.event_name == 'pull_request' }}

code_quality_check:
uses: ./.github/workflows/code-quality-check.yml
secrets: inherit
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
name: Check PR Title

on:
workflow_call:
pull_request:
types: [ opened, reopened, synchronize, edited ]
branches:
- 'main'
- 'release/[0-9]+.[0-9]+'

jobs:
pr_title_check:
name: PR Linters
name: Check PR Title
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
Expand Down

0 comments on commit cc77790

Please sign in to comment.