2022-12-07 09:24:33 +00:00
|
|
|
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
|
2022-12-07 09:24:33 +00:00
|
|
|
|
|
|
|
jobs:
|
2023-06-03 18:06:19 +00:00
|
|
|
checksum:
|
2022-12-07 09:24:33 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-06-30 17:57:25 +00:00
|
|
|
if: github.repository == 'projectdiscovery/nuclei-templates'
|
2022-12-07 09:24:33 +00:00
|
|
|
steps:
|
2023-09-12 10:36:40 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-05-11 13:01:52 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
2023-01-15 16:05:57 +00:00
|
|
|
- name: Set up Go
|
2023-12-11 05:07:46 +00:00
|
|
|
uses: actions/setup-go@v5
|
2023-01-15 16:05:57 +00:00
|
|
|
with:
|
2023-10-30 12:01:26 +00:00
|
|
|
go-version: 1.21.x
|
2022-12-07 09:24:33 +00:00
|
|
|
|
|
|
|
- name: install checksum generator
|
|
|
|
run: |
|
2024-04-23 10:04:31 +00:00
|
|
|
go install -v github.com/projectdiscovery/nuclei/v3/cmd/generate-checksum@latest
|
2022-12-07 09:24:33 +00:00
|
|
|
|
|
|
|
- name: generate checksum
|
2023-05-11 13:01:52 +00:00
|
|
|
id: checksum
|
2022-12-07 09:24:33 +00:00
|
|
|
run: |
|
|
|
|
generate-checksum /home/runner/work/nuclei-templates/nuclei-templates/ templates-checksum.txt
|
2023-05-11 13:01:52 +00:00
|
|
|
git status -s | wc -l | xargs -I {} echo CHANGES={} >> $GITHUB_OUTPUT
|
2022-12-07 09:24:33 +00:00
|
|
|
|
|
|
|
- name: Commit files
|
2023-05-11 13:01:52 +00:00
|
|
|
if: steps.checksum.outputs.CHANGES > 0
|
2022-12-07 09:24:33 +00:00
|
|
|
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:"
|
2022-12-07 09:24:33 +00:00
|
|
|
|
|
|
|
- name: Push changes
|
2023-06-20 12:53:35 +00:00
|
|
|
if: steps.checksum.outputs.CHANGES > 0
|
|
|
|
run: |
|
|
|
|
git pull --rebase
|
|
|
|
git push origin ${{ github.ref }}
|
|
|
|
env:
|
2024-04-23 10:04:31 +00:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|