aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/dependabot.yml6
-rw-r--r--.github/workflows/ci.yml18
-rw-r--r--.github/workflows/flake-checker.yml18
-rw-r--r--.github/workflows/flake-updater.yml24
-rw-r--r--flake.nix2
5 files changed, 0 insertions, 68 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
deleted file mode 100644
index 5ace460..0000000
--- a/.github/dependabot.yml
+++ /dev/null
@@ -1,6 +0,0 @@
-version: 2
-updates:
- - package-ecosystem: "github-actions"
- directory: "/"
- schedule:
- interval: "weekly"
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
deleted file mode 100644
index 655b33f..0000000
--- a/.github/workflows/ci.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-name: CI
-
-on:
- push:
- branches: ["main"]
- pull_request:
- branches: ["main"]
-
-jobs:
- format:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
- - uses: DeterminateSystems/nix-installer-action@v17
- - name: check configuration
- run: |
- nix flake check --all-systems
- nix develop -c echo OK
diff --git a/.github/workflows/flake-checker.yml b/.github/workflows/flake-checker.yml
deleted file mode 100644
index 97090cd..0000000
--- a/.github/workflows/flake-checker.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-name: ❄️ Flake Checker
-
-on:
- push:
- branches:
- - master
- schedule:
- - cron: "42 0 * * 6"
- workflow_dispatch:
-
-jobs:
- flake-checker:
- name: Flake Checker
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
- - uses: DeterminateSystems/nix-installer-action@v17
- - uses: DeterminateSystems/flake-checker-action@v9
diff --git a/.github/workflows/flake-updater.yml b/.github/workflows/flake-updater.yml
deleted file mode 100644
index ba5ac66..0000000
--- a/.github/workflows/flake-updater.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-name: ❄️ Flake Lock Updater
-
-on:
- workflow_dispatch:
- schedule:
- - cron: "30 5 * * 0"
-
-# you need to grant permissions to create PR:
-# https://github.com/DeterminateSystems/update-flake-lock/issues/75
-jobs:
- update-flake-lock:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
- - uses: DeterminateSystems/nix-installer-action@v17
- - uses: DeterminateSystems/update-flake-lock@v24
- with:
- token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
- pr-title: "Update flake.lock"
- commit-msg: "chore: update flake"
- pr-assignees: fcuny
- pr-labels: |
- dependencies
- automated
diff --git a/flake.nix b/flake.nix
index 207192b..24655a7 100644
--- a/flake.nix
+++ b/flake.nix
@@ -94,7 +94,6 @@
projectRootFile = "flake.nix";
programs = {
nixfmt.enable = true;
- actionlint.enable = true;
deadnix.enable = true;
};
};
@@ -108,7 +107,6 @@
inputs.pre-commit-hooks.lib.${system}.run {
inherit src;
hooks = {
- actionlint.enable = true;
check-merge-conflicts.enable = true;
deadnix.enable = true;
detect-private-keys.enable = true;