From e0aacec2b3b7da6e2c8994d30d21e20655bed07b Mon Sep 17 00:00:00 2001 From: s0me1newithhand7s Date: Mon, 12 Jan 2026 16:23:39 +0300 Subject: [PATCH] .github/: actions update (autogenerated) Signed-off-by: s0me1newithhand7s --- .github/workflows/flake-check-action.yaml | 26 ------------------ .github/workflows/flake-update-action.yaml | 31 ---------------------- .github/workflows/flake_update.yml | 30 +++++++++++++++++++++ .github/workflows/fmt_run.yml | 23 ++++++++++++++++ 4 files changed, 53 insertions(+), 57 deletions(-) delete mode 100644 .github/workflows/flake-check-action.yaml delete mode 100644 .github/workflows/flake-update-action.yaml create mode 100644 .github/workflows/flake_update.yml create mode 100644 .github/workflows/fmt_run.yml diff --git a/.github/workflows/flake-check-action.yaml b/.github/workflows/flake-check-action.yaml deleted file mode 100644 index 6517804..0000000 --- a/.github/workflows/flake-check-action.yaml +++ /dev/null @@ -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" diff --git a/.github/workflows/flake-update-action.yaml b/.github/workflows/flake-update-action.yaml deleted file mode 100644 index 37dfee4..0000000 --- a/.github/workflows/flake-update-action.yaml +++ /dev/null @@ -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" \ No newline at end of file diff --git a/.github/workflows/flake_update.yml b/.github/workflows/flake_update.yml new file mode 100644 index 0000000..cb8bf20 --- /dev/null +++ b/.github/workflows/flake_update.yml @@ -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: {} diff --git a/.github/workflows/fmt_run.yml b/.github/workflows/fmt_run.yml new file mode 100644 index 0000000..51cfdb8 --- /dev/null +++ b/.github/workflows/fmt_run.yml @@ -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: {}