Merge pull request #895 from g0tmi1k/master #10
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Wordlist Updater - words | |
on: | |
push: | |
paths: | |
- 'Discovery/Web-Content/common.txt' | |
- 'Discovery/Web-Content/raft-small-words.txt' | |
- 'Discovery/Web-Content/raft-small-words-lowercase.txt' | |
- 'Discovery/Web-Content/raft-medium-words-lowercase.txt' | |
- 'Discovery/Web-Content/raft-medium-words.txt' | |
- 'Discovery/Web-Content/big.txt' | |
- 'Discovery/Web-Content/raft-large-words-lowercase.txt' | |
- 'Discovery/Web-Content/raft-large-words.txt' | |
jobs: | |
update_combined_words: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Generate combined_words.txt | |
run: cd Discovery/Web-Content/ && cat common.txt raft-small-words* raft-medium-words* big.txt raft-large-words* | awk '! seen[$0]++' > combined_words.txt | |
- name: Switching from HTTPS to SSH | |
run: git remote set-url origin git@github.com:danielmiessler/SecLists.git | |
- name: Check for changes | |
run: git status | |
- name: Stage changed files | |
run: git add Discovery/Web-Content/combined_words.txt | |
- name: Configure git email and username | |
run: | | |
git config --local user.email "example@github.com" | |
git config --local user.name "GitHub Action" | |
- name: Commit changed files | |
run: git commit -m "[Github Action] Updated combined_words.txt" | |
- name: Push changes # push the output folder to your repo | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
force: true |