Skip to content

chore: Bump versions of container and some actions #1

chore: Bump versions of container and some actions

chore: Bump versions of container and some actions #1

Workflow file for this run

name: PR TODO checks
on: pull_request
jobs:
fixmes:
name: New FIXMEs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: git fetch origin ${GITHUB_BASE_REF}
- name: Check for FIXMEs
uses: luator/github_action_check_new_todos@v1
with:
label: FIXME
base_ref: origin/${{ github.base_ref }}
todos:
name: New TODOs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: git fetch origin ${GITHUB_BASE_REF}
- name: Check for TODOs
uses: luator/github_action_check_new_todos@v1
with:
label: TODO
base_ref: origin/${{ github.base_ref }}