💜 Updates contributors list #160
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
# Finds any TO-DO notes within the code, and opens up an issue for it to be fixed | |
name: 🌈 Open issue for Todos | |
on: ["push"] | |
jobs: | |
build: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@master" | |
- name: "TODO to Issue" | |
uses: "alstr/todo-to-issue-action@v4.2" | |
id: "todo" | |
with: | |
TOKEN: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }} | |
AUTO_ASSIGN: true |