Skip to content

Commit

Permalink
workflows: add dependabot and deadnix
Browse files Browse the repository at this point in the history
  • Loading branch information
willbush committed Feb 24, 2024
1 parent 01357a4 commit d0b42af
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Global owners
* @willbush
7 changes: 7 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates to GitHub Actions every week
interval: "weekly"
19 changes: 19 additions & 0 deletions .github/workflows/deadnix.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Dead code analysis
on:
workflow_dispatch: # allows manual triggering
schedule:
- cron:
"0 0 1 * *" # It runs at midnight (0 hour 0 minute) of the 1st day
# of every month.

jobs:
deadnix:
name: Deadnix
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: cachix/install-nix-action@v22
- uses: cachix/cachix-action@v12
with:
name: deadnix
- uses: astro/deadnix-action@main

0 comments on commit d0b42af

Please sign in to comment.