Skip to content

Commit

Permalink
ci(deadnix): workflow to clean dead nix code
Browse files Browse the repository at this point in the history
  • Loading branch information
luisnquin committed Mar 1, 2024
1 parent 48552f9 commit be9fc74
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/deadnix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Deadnix
on: [push, pull_request]
env:
committer_name: Invio bot
committer_email: [email protected]

jobs:
deadnix-job:
runs-on: ubuntu-latest
steps:
- name: Code checkout
uses: actions/checkout@v4

- name: Install nix
uses: cachix/install-nix-action@v22

- uses: cachix/cachix-action@v12
with:
name: deadnix

- name: Code clean up + pull request
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 be9fc74

Please sign in to comment.