Skip to content

chore: gitignore 및 auto-approve 워크플로우 정리 #13

chore: gitignore 및 auto-approve 워크플로우 정리

chore: gitignore 및 auto-approve 워크플로우 정리 #13

Workflow file for this run

name: Auto approve
on:
pull_request:
types: [opened, edited]
jobs:
auto-approve:
runs-on: kakaostyle-gha-runner-arm64
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