Skip to content

docs: README 간소화 및 CLI 레퍼런스 분리 #18

docs: README 간소화 및 CLI 레퍼런스 분리

docs: README 간소화 및 CLI 레퍼런스 분리 #18

Workflow file for this run

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