27 lines
699 B
YAML
27 lines
699 B
YAML
name: 📝 Readme Update
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ["🗒 Templates Stats"]
|
|
types:
|
|
- completed
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'projectdiscovery/nuclei-templates'
|
|
steps:
|
|
- run: sudo apt-get install tree -y
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.8"
|
|
- run: python .github/scripts/update-readme.py
|
|
- uses: projectdiscovery/actions/setup/git@v5
|
|
- uses: projectdiscovery/actions/commit@v5
|
|
with:
|
|
files: 'README.md'
|
|
message: 'docs: update README 🤖'
|
|
- run: git push origin $GITHUB_REF
|