blob: 9aa57ec2e49c1de06b18000cc4312c65b52339d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
name: Update Flake Lockfile
on:
schedule:
# run weekly on sunday
- cron: "0 0 * * 0"
workflow_dispatch:
permissions: {}
jobs:
update-flake:
if: github.repository == 'Project-Tick/MeshMC'
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@v6
- uses: cachix/install-nix-action@1ca7d21a94afc7c957383a2d217460d980de4934 # v31
- uses: DeterminateSystems/update-flake-lock@v28
with:
commit-msg: "chore(nix): update lockfile"
pr-title: "chore(nix): update lockfile"
pr-labels: |
platform: Linux
area: packaging
complexity: low
priority: low
type: robot
changelog:omit
|