Skip to content

Update Feed

Update Feed #1877

Workflow file for this run

name: Update Feed
on:
push:
schedule:
- cron: "0 */1 * * *"
jobs:
update-feed:
name: update-feed
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 0
- uses: actions/setup-node@v4
- name: install deps
run: corepack yarn install
- name: Run the script
run: corepack yarn build
- name: Commit files
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git commit -a -m "update feed"
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}