GitHub520 #19671
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: GitHub520 | |
on: | |
push: | |
schedule: | |
- cron: '0 */2 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.7] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
sudo python -m pip install --upgrade pip | |
if [ -f requirements.txt ]; then sudo pip install -r requirements.txt; fi | |
- name: run script | |
run: | | |
# fetch new ip content and update readme file | |
sudo python fetch_ips.py | |
- name: commit | |
id: commit | |
run: | | |
git config --global user.email [email protected] | |
git config --global user.name action_bot | |
git add . | |
git commit -m "update readme content" | |
continue-on-error: true | |
- name: Check on failures | |
if: steps.commit.outputs.status == 'failure' | |
run: exit 1 | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} |