Skip to content

Commit

Permalink
feat(action): todocomments (#56)
Browse files Browse the repository at this point in the history
Aggiunta action che analizza i file modificati di una PR e controlla la
presenza di commenti TODO. Riporta tutti i TODO in un commento della PR
che viene aggiornato in automatico quando un TODO viene risolto o
aggiunto. L'action è stata programmata per ignorare i file `.yml`.

#patch
  • Loading branch information
ncvescera authored Aug 17, 2023
2 parents 558c6f6 + 7d61012 commit 7353145
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/todocomments.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Todo Comments 🔫
on: [pull_request]

jobs:
todo-comments:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Create Todo Comments ✅
uses: gkampitakis/github-action-todo-commenter@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
ignore-pattern: '.yml'
review-message: "monello 👹, hai aggiunto dei TODO che vanno sistemati !"
# optional, default is "TODO:,FIXME:,BUG:"
tags: "TODO:,FIXME:,BUG:"

0 comments on commit 7353145

Please sign in to comment.