Bump version to 2.0.0 #173
Workflow file for this run
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: PR TODO checks | |
on: pull_request | |
jobs: | |
fixmes: | |
name: New FIXMEs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check for FIXMEs | |
uses: luator/github_action_check_new_todos@v2 | |
with: | |
label: FIXME | |
base_ref: origin/${{ github.base_ref }} | |
todos: | |
name: New TODOs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check for TODOs | |
uses: luator/github_action_check_new_todos@v2 | |
with: | |
label: TODO | |
base_ref: origin/${{ github.base_ref }} |