Bump supercharge/mongodb-github-action from 1.11.0 to 1.12.0 (#481) #318
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: Create Issues from TODOs | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
# Run on latest version of ubuntu | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# "ref" specifies the branch to check out. | |
# "github.event.release.target_commitish" is a global variable and specifies the branch the release targeted | |
ref: ${{ github.event.release.target_commitish }} | |
- name: "TODO to Issue" | |
uses: "alstr/todo-to-issue-action@v5" | |
id: "todo" |