.github/: actions update (autogenerated)
Signed-off-by: s0me1newithhand7s <git+me@hand7s.org>
This commit is contained in:
parent
0ad4a82e6c
commit
e0aacec2b3
4 changed files with 53 additions and 57 deletions
26
.github/workflows/flake-check-action.yaml
vendored
26
.github/workflows/flake-check-action.yaml
vendored
|
|
@ -1,26 +0,0 @@
|
||||||
---
|
|
||||||
name: "Flake Check Action"
|
|
||||||
run-name: "nfc"
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
push:
|
|
||||||
pull_request:
|
|
||||||
types: [
|
|
||||||
opened,
|
|
||||||
edited,
|
|
||||||
synchronize,
|
|
||||||
reopened
|
|
||||||
]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
checker:
|
|
||||||
runs-on: "ubuntu-latest"
|
|
||||||
steps:
|
|
||||||
- name: "Repo checkout"
|
|
||||||
uses: "actions/checkout@v5"
|
|
||||||
- name: "Nix Package Manager install"
|
|
||||||
uses: "DeterminateSystems/nix-installer-action@v16"
|
|
||||||
- name: "Flake.lock checking"
|
|
||||||
uses: "DeterminateSystems/flake-checker-action@v5"
|
|
||||||
- name: "Formatter run"
|
|
||||||
run: "nix fmt"
|
|
||||||
31
.github/workflows/flake-update-action.yaml
vendored
31
.github/workflows/flake-update-action.yaml
vendored
|
|
@ -1,31 +0,0 @@
|
||||||
---
|
|
||||||
name: "Flake Update Action"
|
|
||||||
run-name: "nfu"
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 0 * * 0'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
locker:
|
|
||||||
runs-on: "ubuntu-latest"
|
|
||||||
steps:
|
|
||||||
- name: "repo checkout"
|
|
||||||
uses: "actions/checkout@v4"
|
|
||||||
- name: "nix install"
|
|
||||||
uses: "DeterminateSystems/nix-installer-action@v16"
|
|
||||||
- name: "flake check"
|
|
||||||
uses: "DeterminateSystems/flake-checker-action@v5"
|
|
||||||
- name: "flake update"
|
|
||||||
uses: "DeterminateSystems/update-flake-lock@v24"
|
|
||||||
with:
|
|
||||||
pr-title: "Update flake.lock Action"
|
|
||||||
pr-labels: |
|
|
||||||
"CI/CD"
|
|
||||||
"automated"
|
|
||||||
git-author-name: "John Nix"
|
|
||||||
git-author-email: "github-actions[bot]@users.noreply.github.com"
|
|
||||||
git-committer-name: "John Nix"
|
|
||||||
git-committer-email: "github-actions[bot]@users.noreply.github.com"
|
|
||||||
pr-assignees: "s0me1newithhand7s"
|
|
||||||
pr-reviewers: "s0me1newithhand7s"
|
|
||||||
30
.github/workflows/flake_update.yml
vendored
Normal file
30
.github/workflows/flake_update.yml
vendored
Normal file
|
|
@ -0,0 +1,30 @@
|
||||||
|
# This file is automatically generated from Nix configuration. Do not edit directly.
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
locking:
|
||||||
|
continue-on-error: false
|
||||||
|
name: flake.lock update
|
||||||
|
permissions: write-all
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: checkout
|
||||||
|
uses: actions/checkout@v6
|
||||||
|
- name: nix install
|
||||||
|
uses: DeterminateSystems/nix-installer-action@v21
|
||||||
|
- name: flake.lock check
|
||||||
|
uses: DeterminateSystems/flake-checker-action@v12
|
||||||
|
with:
|
||||||
|
fail-mode: true
|
||||||
|
- name: flake.lock update
|
||||||
|
uses: DeterminateSystems/update-flake-lock@v28
|
||||||
|
with:
|
||||||
|
pr-assignees: s0me1newithhand7s
|
||||||
|
pr-lables: |
|
||||||
|
"CI/CD"
|
||||||
|
pr-reviewers: s0me1newithhand7s
|
||||||
|
pr-title: Update `flake.lock` GitHub Action
|
||||||
|
name: flake lock updater
|
||||||
|
"on":
|
||||||
|
schedule:
|
||||||
|
- cron: 0 0 * * *
|
||||||
|
workflow_dispatch: {}
|
||||||
23
.github/workflows/fmt_run.yml
vendored
Normal file
23
.github/workflows/fmt_run.yml
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
# This file is automatically generated from Nix configuration. Do not edit directly.
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
fmt:
|
||||||
|
continue-on-error: false
|
||||||
|
permissions: write-all
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: checkout
|
||||||
|
uses: actions/checkout@v6
|
||||||
|
- name: nix install
|
||||||
|
uses: DeterminateSystems/nix-installer-action@v21
|
||||||
|
- name: flake.lock check
|
||||||
|
uses: DeterminateSystems/flake-checker-action@v12
|
||||||
|
with:
|
||||||
|
fail-mode: true
|
||||||
|
- name: formatter run
|
||||||
|
run: |
|
||||||
|
nix develop -c prek run -a
|
||||||
|
name: flake_format
|
||||||
|
"on":
|
||||||
|
push: {}
|
||||||
|
workflow_dispatch: {}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue