CI test #3
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 Generator" | |
on: | |
push: # see: https://help.github.com/en/actions/reference/events-that-trigger-workflows#pull-request-event-pull_request | |
paths: | |
- '**.ino' | |
- '**.cpp' | |
- '**.h' | |
- '**.sh' | |
- '**.py' | |
- '**.html' | |
- '**.js' | |
- '**.css' | |
- '**Doxyfile' | |
- '**doxyignore' | |
- 'keywords.txt' | |
- '**reports.yml' | |
pull_request: | |
paths: | |
- '**.ino' | |
- '**.cpp' | |
- '**.h' | |
- '**.sh' | |
- '**.py' | |
- '**.html' | |
- '**.js' | |
- '**.css' | |
- '**Doxyfile' | |
- '**doxyignore' | |
- 'keywords.txt' | |
- '**reports.yml' | |
jobs: | |
build: | |
name: "Generate TODO Issues" | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
steps: | |
- name: Work around GitHub permission issue | |
run: "sudo git config --global --add safe.directory /github/workspace" | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Generate Issues From TODOs | |
uses: alstr/[email protected] | |
id: todo | |
with: | |
TOKEN: ${{ secrets.GITHUB_TOKEN }} |