Update stars count #1
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 stars count | |
on: | |
schedule: | |
- cron: '0 0 1 * *' # Every 1st of every month at 00:00 | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup node with version 16 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16.x' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install dependencies | |
run: npm ci | |
- name: Run script | |
uses: ./.github/actions/update-stars | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run format | |
run: npm run format | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
author: github_actions | |
commit-message: "(AUTO) Update stars" | |
title: "BOT: Update stars" | |
body: Update all stars count from Github and Gitlab | |
branch: ci-update-stars | |
add-paths: src/lib/stars.json | |
delete-branch: true | |
token: ${{ secrets.GITHUB_TOKEN }} |