Skip to content

Commit

Permalink
Daily run nvchecker via gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
michaellass committed Jul 28, 2024
1 parent f981673 commit 5dcada1
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/nvchecker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: nvchecker

on:
schedule:
- cron: "0 6 * * *"
workflow_dispatch:

jobs:
nvchecker:
runs-on: ubuntu-latest
container: archlinux:latest
steps:
- uses: actions/checkout@v3
- name: Install nvchecker
run: |
pacman -Sy
pacman -S --noconfirm nvchecker python-jq python-packaging pyalpm
- name: Run nvchecker
run: nvchecker -c nvchecker.toml | tee nvchecker.out
- name: Evaluate result
run: test ! -s nvchecker.out

0 comments on commit 5dcada1

Please sign in to comment.