Skip to content

Commit

Permalink
revert: revert pr title checker changes
Browse files Browse the repository at this point in the history
  • Loading branch information
emnnipal committed Feb 19, 2022
1 parent 78beb14 commit cc63cf5
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 10 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/pr-title-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: 'PR Title Checker'
on:
pull_request_target:
types:
- opened
- edited
- synchronize
- labeled
- unlabeled

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: thehanimo/pr-title-checker@v1.3.3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
pass_on_octokit_error: false
configuration_path: '.github/pr-title-checker-config.json'
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Pull Request Checks'
name: 'Unit tests & linter'
on:
pull_request:
branches: [main, develop]
Expand Down Expand Up @@ -28,12 +28,3 @@ jobs:

- name: Run tests
run: pnpm test -- --maxWorkers=4 --no-color --coverage=false --changedSince=origin/main

check:
runs-on: ubuntu-latest
steps:
- uses: thehanimo/pr-title-checker@v1.3.3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
pass_on_octokit_error: false
configuration_path: '.github/pr-title-checker-config.json'

0 comments on commit cc63cf5

Please sign in to comment.