mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2026-01-31 15:53:10 +08:00
24 lines
577 B
YAML
24 lines
577 B
YAML
name: 🔀 Auto merge PR
|
|
|
|
on:
|
|
# pull_request:
|
|
# types: [opened, synchronize, reopened, ready_for_review]
|
|
# pull_request_review:
|
|
# types: [submitted]
|
|
workflow_run:
|
|
workflows: ["♾️ Compatibility Checks"]
|
|
types: [completed]
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
auto-merge-dependabot:
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
|
steps:
|
|
- uses: projectdiscovery/actions/pr/approve@v1
|
|
- uses: projectdiscovery/actions/pr/merge@v1
|
|
with:
|
|
auto: "true" |