Update Radar Rules #19618
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 Radar Rules | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'rules/rssbud-rules.js' | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
- cron: '0 * * * *' | |
workflow_dispatch: | |
jobs: | |
update: | |
name: Update rules | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token | |
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18.18.2' | |
- name: Fetch radar rules | |
run: | | |
rules="$(curl 'https://rsshub.js.org/build/radar-rules.js' 2>/dev/null)" | |
echo "$rules" > "./rules/radar-rules.js" | |
- name: Run translation pipeline | |
env: | |
DEEPL_AUTH_KEY: ${{ secrets.DEEPL_AUTH_KEY }} | |
run: | | |
npm ci | |
npm run start | |
- name: Commit files | |
run: | | |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git config --local user.name "github-actions[bot]" | |
git diff --quiet && git diff --staged --quiet || git commit -am 'Update rules' | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} |