mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-27 16:25:24 +00:00
* add auto sync and merge workflows * misc update --------- Co-authored-by: sandeep <8293321+ehsandeep@users.noreply.github.com>
30 lines
604 B
YAML
30 lines
604 B
YAML
name: 🤖 sync dep
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- dev
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
issues: write
|
|
repository-projects: write
|
|
|
|
jobs:
|
|
sync-dep-with-dev:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Set up Node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 12
|
|
|
|
- name: Opening pull request
|
|
id: pull
|
|
uses: tretuna/sync-branches@1.4.0
|
|
with:
|
|
GITHUB_TOKEN: ${{ secrets.DEPENDABOT_PAT }}
|
|
FROM_BRANCH: "${{ github.ref_name }}"
|
|
TO_BRANCH: "dep" |