chore: OTP reader 확장프로그램 팝업 로딩 대기 시간 증가 #21
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Auto approve | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize] | |
| jobs: | |
| auto-approve: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| contents: read | |
| steps: | |
| - name: Auto approve if title contains "chore" or "docs" or "revert" or "test" | |
| if: contains(github.event.pull_request.title, 'chore') || | |
| contains(github.event.pull_request.title, 'docs') || | |
| contains(github.event.pull_request.title, 'revert') || | |
| contains(github.event.pull_request.title, 'test') | |
| uses: hmarr/auto-approve-action@v4 |