Skip to content

feat: Git 워크플로우 스킬 및 CI 자동화 추가 #1

feat: Git 워크플로우 스킬 및 CI 자동화 추가

feat: Git 워크플로우 스킬 및 CI 자동화 추가 #1

Workflow file for this run

name: Auto approve
on:
pull_request:
types: [opened, edited]
jobs:
auto-approve:
runs-on: ubuntu-latest
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