Bump @typescript-eslint/eslint-plugin from 8.6.0 to 8.11.0 #1681
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Todo Comments | |
on: [pull_request] | |
jobs: | |
todo-comments: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Create Todo Comments | |
uses: gkampitakis/github-action-todo-commenter@v1 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
review-message: "Please take a look :eyes:" | |
require-checker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Find require statements | |
uses: gkampitakis/github-action-todo-commenter@v1 | |
with: | |
comment-title: ":construction: Require statements found" | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
review-message: ":no_entry: Do not use require statements - please change it and use a custom error before merging this PR!" | |
tags: "\\s+require\\(" | |