Skip to content

Commit

Permalink
ci(nix): added workflow to check and remove dead code through pull re…
Browse files Browse the repository at this point in the history
…quests
  • Loading branch information
luisnquin committed Jul 12, 2024
1 parent 09e256c commit 93a450e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/deadnix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Deadnix
on: [push, pull_request]
jobs:
deadnix-job:
runs-on: ubuntu-latest
env:
committer_name: Antigen
committer_email: [email protected]
steps:
- name: Checkout repository
uses: actions/checkout@v4

- uses: cachix/install-nix-action@v22
- uses: cachix/cachix-action@v12
with:
name: deadnix

- uses: luisnquin/deadnix-action@main
with:
author: ${{env.committer_name}} <${{env.committer_email}}>
committer: ${{env.committer_name}} <${{env.committer_email}}>
commit_message: "deadnix: removed dead code"

0 comments on commit 93a450e

Please sign in to comment.