mirror of
https://github.com/danielmiessler/SecLists.git
synced 2026-07-21 13:14:08 +00:00
Merge pull request #785 from nicholas-long/master
Create list of files in that could go in /etc for fuzzing
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
name: update etc files
|
||||
|
||||
# Controls when the workflow will run
|
||||
on:
|
||||
schedule:
|
||||
- cron: '30 20 1,15 * *' # run at 8:30p on 1st and 15th
|
||||
|
||||
# Allows you to run this workflow manually from the Actions tab
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
updatejob:
|
||||
# The type of runner that the job will run on
|
||||
runs-on: ubuntu-latest
|
||||
# Steps represent a sequence of tasks that will be executed as part of the job
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
# Runs a single command using the runners shell
|
||||
- name: update wordlist
|
||||
run: cd .bin/etc-files-list-update/ && ./update.sh
|
||||
|
||||
- name: print diff
|
||||
run: git diff
|
||||
|
||||
# commit and push
|
||||
- uses: stefanzweifel/git-auto-commit-action@v4
|
||||
with:
|
||||
commit_message: '[Github Action] Updated LFI-etc-files-of-all-linux-packages.txt'
|
||||
Reference in New Issue
Block a user