Skip to content

Commit

Permalink
refactoring, restructuring
Browse files Browse the repository at this point in the history
  • Loading branch information
topscoder committed May 16, 2024
1 parent 0b93ec8 commit 312d7cf
Show file tree
Hide file tree
Showing 404 changed files with 55 additions and 108 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/templates-stats.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,39 +3,39 @@ name: 🗒 Templates Stats
on:
schedule:
- cron: '25 6 * * *'

push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Parse readme
run: |
python /home/runner/work/nuclei-wordfence-cve/nuclei-wordfence-cve/scripts/parse.readme.py
python /home/runner/work/nuclei-wordfence-cve/nuclei-wordfence-cve/src/scripts/parse_readme.py
- name: Get statistical changes
id: stats
run: git status -s | wc -l | xargs -I {} echo CHANGES={} >> $GITHUB_OUTPUT

- name: Commit files
if: steps.stats.outputs.CHANGES > 0
run: |
Expand Down

This file was deleted.

Loading

0 comments on commit 312d7cf

Please sign in to comment.