feat(ci): add GHA workflow for updating flake.lock every weekend

This commit is contained in:
Harsh Shandilya 2023-03-12 09:50:43 +05:30
parent 8afba1a3ac
commit af3054d481

View file

@ -0,0 +1,14 @@
name: Update flake.lock
on:
workflow_dispatch:
schedule:
- cron: '0 6 * * 0'
permissions:
contents: write
jobs:
update-flake-lock:
uses: msfjarvis/shared-workflows/.github/workflows/update-flake-lock.yml@main
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}