Update the combo list #2112
This file contains hidden or 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: Update the combo list | |
| on: | |
| push: | |
| branches: [ main ] | |
| schedule: | |
| - cron: '16 20 * * *' | |
| workflow_dispatch: | |
| jobs: | |
| mkcombo: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - name: Build | |
| run: | | |
| echo Debugging output | |
| uname | |
| pip3 --version | |
| pip3 list | |
| python --version | |
| which python | |
| id | |
| echo make the list | |
| pip3 install requests publicsuffixlist | |
| python combo.py | |
| - name: Commit & Push | |
| uses: actions-x/commit@v6 | |
| with: | |
| email: updatebot@iam-py-test.github.io | |
| name: Update bot | |
| branch: main | |
| message: Update the combo list |