nuclei-templates/.github/workflows/readme-update.yml

48 lines
1.3 KiB
YAML
Raw Normal View History

2021-05-15 14:30:13 +00:00
name: 📝 Readme Update
on:
2021-09-22 15:37:10 +00:00
workflow_run:
workflows: ["🗒 Templates Stats"]
types:
- completed
2021-07-20 07:55:28 +00:00
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
2021-09-22 15:37:10 +00:00
if: github.repository == 'projectdiscovery/nuclei-templates'
steps:
- name: Install tree
run: sudo apt-get install tree -y
2020-11-16 23:02:12 +00:00
- name: Check out code
uses: actions/checkout@master
with:
persist-credentials: false
fetch-depth: 0
2020-11-16 23:02:12 +00:00
- name: Set up Python
uses: actions/setup-python@v4
2020-11-16 23:02:12 +00:00
with:
python-version: "3.8"
2020-11-16 23:02:12 +00:00
- name: Update README
2021-09-22 15:37:10 +00:00
id: readme-update
2020-11-16 23:02:12 +00:00
run: |
2020-11-17 18:23:48 +00:00
python .github/scripts/update-readme.py
git status -s | wc -l | xargs -I {} echo CHANGES={} >> $GITHUB_OUTPUT
2020-11-16 23:02:12 +00:00
- name: Commit files
if: steps.readme-update.outputs.CHANGES > 0
2020-11-16 23:02:12 +00:00
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
2021-09-22 15:37:10 +00:00
git commit -m "Auto README Update [$(date)] :robot:" -a
2020-11-16 23:02:12 +00:00
- name: Push changes
if: steps.readme-update.outputs.CHANGES > 0
2020-11-16 23:02:12 +00:00
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}