Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove unnecessary IFD + add auto updates & testing #40

Merged
merged 17 commits into from
Nov 2, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ci: start auto updating flake inputs
  • Loading branch information
getchoo committed Nov 2, 2023

Verified

This commit was signed with the committer’s verified signature.
getchoo seth
commit 6c1297f6a9673b869ac1d1d54bba9aab09c15f3e
25 changes: 25 additions & 0 deletions .github/workflows/update-lock.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Update flake lockfile

on:
schedule:
# run every friday
- cron: "0 0 * * 5"
workflow_dispatch:

jobs:
update-lock:
runs-on: ubuntu-latest

permissions:
contents: write
pull-requests: write

steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v22

- uses: DeterminateSystems/update-flake-lock@v20
with:
commit-msg: "chore: update flake lockfile"
pr-title: "chore: update flake lockfile"
token: ${{ github.token }}