We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f76f3d6 commit a0b3a2dCopy full SHA for a0b3a2d
.github/workflows/todo.yml
@@ -1,20 +1,26 @@
1
-name: Run TODO Watcher
+name: Smart TODO Check
2
3
on:
4
push:
5
- branches: [ main ]
+ branches: [main]
6
pull_request:
7
8
9
jobs:
10
- todo-watcher:
+ smart-todo:
11
runs-on: ubuntu-latest
12
steps:
13
- uses: actions/checkout@v3
14
+
15
- name: Setup Node.js
16
uses: actions/setup-node@v3
17
with:
- node-version: '20'
18
- - run: npm install
19
- - run: npm run build
20
- - uses: ./ # Usa esta Action localmente
+ node-version: 20
+ - run: yarn install
21
+ - run: yarn prepare
22
23
+ - name: Run Smart TODO Action
24
+ uses: ./
25
+ with:
26
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments