docs: README 간소화 및 CLI 레퍼런스 분리 #14
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] | |
| jobs: | |
| auto-approve: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| contents: read | |
| steps: | |
| - name: Auto approve if title starts with "chore:", "docs:", "revert:" or "test:" | |
| if: startsWith(github.event.pull_request.title, 'chore:') || | |
| startsWith(github.event.pull_request.title, 'docs:') || | |
| startsWith(github.event.pull_request.title, 'revert:') || | |
| startsWith(github.event.pull_request.title, 'test:') | |
| uses: hmarr/auto-approve-action@a29f8bd391979575ad1a9e1669325153e9a43f74 # v4 |