Skip to content

fix🐛: add import builder #10

fix🐛: add import builder

fix🐛: add import builder #10

Workflow file for this run

name: Fetch GitHub Trending
on:
push:
branches:
- main
pull_request:
branches:
- main
# schedule:
# - cron: '* 16 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
run: pnpm install
- name: Build the project
run: pnpm run build
- name: Commit and Push changes
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add .
git commit -m ":rocket: Fetch GitHub Trending at $(date +'%Y-%m-%d %H:%M')"
git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}