mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-28 02:45:24 +00:00
* add auto sync and merge workflows * misc update --------- Co-authored-by: sandeep <8293321+ehsandeep@users.noreply.github.com>
25 lines
477 B
YAML
25 lines
477 B
YAML
name: 🤖 dep auto merge
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- dep
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
issues: write
|
|
repository-projects: write
|
|
|
|
jobs:
|
|
automerge:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
token: ${{ secrets.DEPENDABOT_PAT }}
|
|
|
|
- uses: ahmadnassri/action-dependabot-auto-merge@v2
|
|
with:
|
|
github-token: ${{ secrets.DEPENDABOT_PAT }}
|
|
target: all |