mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
ba37ff73ac
The `tickgit.com` webservice seems to not update itself anymore, but having a list of TODO's is very useful. Use the tickgit project to gather the TODO's, bit in a GitHub Workflow. Developers can also run `make containerized-test TARGET=tickgit` to get the result locally. Signed-off-by: Niels de Vos <ndevos@ibm.com>
19 lines
289 B
YAML
19 lines
289 B
YAML
---
|
|
name: List TODO's
|
|
# yamllint disable-line rule:truthy
|
|
on:
|
|
push:
|
|
branches:
|
|
- devel
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
tickgit:
|
|
name: tickgit
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: make containerized-test TARGET=tickgit
|