Update awesome-stars list #235
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: Update awesome-stars list | |
on: | |
push: | |
branches: main | |
schedule: | |
- cron: '38 17 * * 6' | |
jobs: | |
awesome-stars: | |
name: update-list | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: 3.11 | |
- name: Install dependencies | |
run: | | |
python3 -m pip install --upgrade --upgrade-strategy eager --pre pip | |
python3 -m pip install --upgrade-strategy eager --pre starred | |
- name: update-readme | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: starred --username RogueScholar --repository awesome-stars --sort --private --token ${GITHUB_TOKEN} --message 'List updated by GitHub Actions' |