update starred list #62
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 starred list | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: 30 0 * * * | |
jobs: | |
starred-list: | |
name: update starred-list | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install starred | |
- name: get repository name | |
run: echo "REPOSITORY_NAME=${GITHUB_REPOSITORY#*/}" >> $GITHUB_ENV | |
- name: update repo category by language | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
REPOSITORY: ${{ env.REPOSITORY_NAME }} | |
USERNAME: ${{ github.repository_owner }} | |
run: starred --username ${USERNAME} --repository ${REPOSITORY} --sort --token ${GITHUB_TOKEN} --message 'starred-list category by language update by github actions cron, created by starred' | |
- name: update repo category by topic | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
REPOSITORY: ${{ env.REPOSITORY_NAME }} | |
USERNAME: ${{ github.repository_owner }} | |
run: starred --username ${USERNAME} --repository ${REPOSITORY} --sort --token ${GITHUB_TOKEN} --message 'starred-list category by topic update by github actions cron, created by starred' --topic --topic_limit 500 --filename topics.md |