Skip to content

Run

Run #6611

Workflow file for this run

name: Run
on:
schedule:
# At every 120th minute.
- cron: "*/120 * * * *"
push:
branches:
- main
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: navi-language/setup-navi@v1
with:
navi-version: v0.11.0
- name: Perform
env:
CI: 1
FEISHU_WEBHOOK_KEY: ${{ secrets.FEISHU_WEBHOOK_KEY }}
run: |
navi run
git config --global user.name "RSS Bot"
git config --global user.email "[email protected]"
timestamp=$(date -u)
git add -A && git commit -m "Update check state ${timestamp}." || exit 0
git push