-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (26 loc) · 932 Bytes
/
todo.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Automatically generate TODO Issues from source code comments
name: Generate TODO Tickets
on:
push:
branches:
- master
jobs:
todo:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
id: checkout
uses: actions/[email protected]
- name: Generate TODO Tickets
id: todo
uses: ribtoks/tdg-github-action@master
with:
TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO: ${{ github.repository }}
SHA: ${{ github.sha }}
REF: ${{ github.ref }}
LABEL: "TODO"
ROOT: "src"
# This is scoped to /src to prevent accidental discovery of comments in node_modules, git hooks, etc.
# This file was automatically copied and populated by rebroadcast
# Do not edit this file directly, instead modify the source at https://github.com/Wall-Brew-Co/rebroadcast/blob/master/sources/github-actions/workflows/todo.yml