[bot] synced file(s) with Wall-Brew-Co/rebroadcast (#143) #80
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
# 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 |