mirror of
https://github.com/projectdiscovery/httpx
synced 2026-06-08 16:50:17 +00:00
28 lines
590 B
YAML
28 lines
590 B
YAML
name: 🤖 Auto Merge
|
|
|
|
on:
|
|
pull_request_review:
|
|
types: [submitted]
|
|
workflow_run:
|
|
workflows: ["♾️ Compatibility Check"]
|
|
types:
|
|
- completed
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
issues: write
|
|
repository-projects: write
|
|
|
|
jobs:
|
|
auto-merge:
|
|
runs-on: ubuntu-latest
|
|
if: github.actor == 'dependabot[bot]'
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
token: ${{ secrets.DEPENDABOT_PAT }}
|
|
|
|
- uses: ahmadnassri/action-dependabot-auto-merge@v2
|
|
with:
|
|
github-token: ${{ secrets.DEPENDABOT_PAT }}
|
|
target: all |