Update the list of my liked repositories #1203
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 the list of my liked repositories' | |
on: | |
schedule: | |
- | |
cron: '30 18 * * *' | |
workflow_dispatch: | |
jobs: | |
build: | |
name: 'stargazed' | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: 'Use GitHub Actions' | |
uses: actions/checkout@v2 | |
- | |
name: 'Use Node.js 12.x' | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 12.x | |
- | |
name: 'Install Package' | |
run: 'npm install --global https://github.com/abhijithvijayan/stargazed' | |
- | |
name: 'Update Repo' | |
env: | |
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | |
run: 'stargazed --username "maxgfr" --token ${GITHUB_TOKEN} --repo "awesome-stars" --message "update readme.md" --sort' |