Renew Trustlist SE #3956
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: Renew Trustlist SE | |
on: | |
schedule: | |
- cron: '0 5,10,15,20 * * *' | |
push: | |
branches: ['main'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install python packages | |
run: pip install requests PyJWT | |
- name: get trustlist SE | |
run: python scripts/trustlist_se/download_trustlist_se.py | |
- uses: EndBug/add-and-commit@v7 | |
with: | |
author_name: github action download trustlist | |
message: 'Update Trustlist SE' | |
add: '*.json' |