Skip to content

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

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

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

Workflow file for this run

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