1
0

Merge pull request #3 from aisyui/react-migration-merge

Add pull request merge support to GitHub Actions
This commit is contained in:
syui
2025-07-18 16:07:08 +09:00
committed by GitHub

View File

@@ -4,10 +4,15 @@ on:
push:
branches:
- main
pull_request:
branches:
- main
types: [closed]
jobs:
build-deploy:
runs-on: ubuntu-latest
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.merged == true)
steps:
- uses: actions/checkout@v4
with: