Merge pull request #262 from brnsuh/main #37
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: 📚 Inserts Awesome Privacy into README | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
paths: ['awesome-privacy.yml'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository 🛎️ | |
uses: actions/checkout@v2 | |
# Get current date-time (used for commit message) | |
- name: Get Date 📅 | |
id: date | |
run: echo "::set-output name=date::$(date +'%d-%b-%Y')" | |
# Downloads + installs Python (used for running gen scripts) | |
- name: Set up Python 🐍 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
# Install contents of requirements.txt | |
- name: Install dependencies 📥 | |
run: | | |
python -m pip install --upgrade pip | |
cd lib && pip install -r requirements.txt | |
# The make command triggers all the Python scripts, generates output | |
- name: Run make command 🔨 | |
run: python lib/awesome-privacy-readme-gen.py | |
# Commit and push the outputed readme | |
- name: Commit and push generated files ⤴️ | |
run: | | |
git config --global user.name "Liss-Bot" | |
git config --global user.email "[email protected]" | |
git pull origin main | |
git add .github/README.md | |
if git diff --staged --quiet; then | |
echo "Nothin new added, so nothing to commit, exiting..." | |
else | |
git commit -m "Updated Awesome Privacy content (last modified on ${{ steps.date.outputs.date }})" | |
git push | |
fi |