mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-02-04 17:53:27 +08:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
24 lines
671 B
YAML
24 lines
671 B
YAML
name: 🤖 TemplateMan
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
templateman:
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'projectdiscovery/nuclei-templates'
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: projectdiscovery/actions/setup/templateman@v1
|
|
with:
|
|
token: '${{ secrets.PDTEAMX_CLASSIC_PAT }}'
|
|
- run: tmc -mr -e -at <<< "$(pwd)"
|
|
- uses: projectdiscovery/actions/setup/git@v1
|
|
- uses: projectdiscovery/actions/commit@v1
|
|
with:
|
|
message: 'chore: update TemplateMan 🤖'
|
|
- name: Push changes
|
|
run: |
|
|
git pull origin $GITHUB_REF --rebase
|
|
git push origin $GITHUB_REF
|