Skip to content

Commit a0b3a2d

Browse files
committed
fix: fix todo file
1 parent f76f3d6 commit a0b3a2d

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

.github/workflows/todo.yml

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,26 @@
1-
name: Run TODO Watcher
1+
name: Smart TODO Check
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [main]
66
pull_request:
7-
branches: [ main ]
7+
branches: [main]
88

99
jobs:
10-
todo-watcher:
10+
smart-todo:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v3
14+
1415
- name: Setup Node.js
1516
uses: actions/setup-node@v3
1617
with:
17-
node-version: '20'
18-
- run: npm install
19-
- run: npm run build
20-
- uses: ./ # Usa esta Action localmente
18+
node-version: 20
19+
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

Comments
 (0)