Merge pull request #903 from Lan5880/master #254
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" | |
on: ["push"] | |
jobs: | |
build: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@master" | |
- name: "todo-to-issue" | |
uses: "senecajs/todo-to-issue-action@master" | |
with: | |
REPO: ${{ github.repository }} | |
BEFORE: ${{ github.event.before }} | |
SHA: ${{ github.sha }} | |
TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
LABEL: "TODO:" | |
COMMENT_MARKER: "//" | |
INCLUDE_EXT: ".js,.md" | |
id: "todo" |