mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 04:55:28 +00:00
* ci: refactor workflows Signed-off-by: Dwi Siswanto <git@dw1.io> * chore: structured build outputs Signed-off-by: Dwi Siswanto <git@dw1.io> * feat: use `go-ci` Signed-off-by: Dwi Siswanto <git@dw1.io> * chore(make): misused var for `vet` cmd Signed-off-by: Dwi Siswanto <git@dw1.io> --------- Signed-off-by: Dwi Siswanto <git@dw1.io>
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 |