nuclei-templates/.github/workflows/template-checksum.yml

46 lines
1.3 KiB
YAML
Raw Normal View History

name: 📝 Template Checksum
on:
push:
2023-03-18 09:19:20 +00:00
branches:
- main
paths:
- '**.yaml'
workflow_dispatch: # allows manual triggering of the workflow
jobs:
2023-06-03 18:06:19 +00:00
checksum:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
2023-01-15 16:05:57 +00:00
- name: Set up Go
uses: actions/setup-go@v4
2023-01-15 16:05:57 +00:00
with:
2023-06-03 18:06:19 +00:00
go-version: 1.20.x
- name: install checksum generator
run: |
go install -v github.com/projectdiscovery/nuclei/v2/cmd/generate-checksum@dev
- name: generate checksum
id: checksum
run: |
generate-checksum /home/runner/work/nuclei-templates/nuclei-templates/ templates-checksum.txt
git status -s | wc -l | xargs -I {} echo CHANGES={} >> $GITHUB_OUTPUT
- name: Commit files
if: steps.checksum.outputs.CHANGES > 0
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
2023-06-03 18:41:10 +00:00
git add templates-checksum.txt
git commit -am "Auto Generated Templates Checksum [$(date)] :robot:"
- name: Push changes
uses: ad-m/github-push-action@master
with:
2023-06-03 18:06:19 +00:00
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}