47 lines
1.2 KiB
YAML
47 lines
1.2 KiB
YAML
name: 📝 Readme Update
|
|
|
|
on:
|
|
create:
|
|
tags:
|
|
- v*
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'projectdiscovery/nuclei-templates' && github.ref == 'refs/heads/master'
|
|
steps:
|
|
- name: Install tree
|
|
run: sudo apt-get install tree -y
|
|
|
|
- name: Check out code
|
|
uses: actions/checkout@master
|
|
with:
|
|
persist-credentials: false
|
|
fetch-depth: 0
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: "3.8"
|
|
|
|
- name: Update README
|
|
id: update-readme
|
|
run: |
|
|
python .github/scripts/update-readme.py
|
|
echo "::set-output name=changes::$(git status -s | wc -l)"
|
|
|
|
- name: Commit files
|
|
if: steps.update-readme.outputs.changes > 0
|
|
run: |
|
|
git config --local user.email "action@github.com"
|
|
git config --local user.name "GitHub Action"
|
|
git commit -m "Auto Update README [$(date)] :robot:" -a
|
|
|
|
- name: Push changes
|
|
if: steps.update-readme.outputs.changes > 0
|
|
uses: ad-m/github-push-action@master
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
branch: ${{ github.ref }}
|