47 lines
1.4 KiB
YAML
47 lines
1.4 KiB
YAML
name: 🤖 TemplateMan
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
templateman:
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'projectdiscovery/nuclei-templates'
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: 1.21.x
|
|
|
|
- name: Install TemplateMan CLI Client
|
|
run: |
|
|
git config --global url."https://${{ secrets.ACCESS_TOKEN }}@github".insteadOf https://github
|
|
git clone https://github.com/projectdiscovery/templateman.git
|
|
cd templateman/templateman-cli/cmd/tmc
|
|
go install
|
|
|
|
- name: Run TemplateMan
|
|
id: tmc
|
|
run: |
|
|
echo /home/runner/work/nuclei-templates/nuclei-templates | tmc -mr -e -at
|
|
git status -s | wc -l | xargs -I {} echo CHANGES={} >> $GITHUB_OUTPUT
|
|
|
|
- name: Commit files
|
|
if: steps.tmc.outputs.CHANGES > 0
|
|
run: |
|
|
git config --local user.email "action@github.com"
|
|
git config --local user.name "GitHub Action"
|
|
git commit --allow-empty -m "TemplateMan Update [$(date)] :robot:" -a
|
|
|
|
- name: Push changes
|
|
if: steps.tmc.outputs.CHANGES > 0
|
|
run: |
|
|
git pull --rebase
|
|
git push origin ${{ github.ref }}
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|