HTHou commented on code in PR #14367: URL: https://github.com/apache/iotdb/pull/14367#discussion_r1877439577
########## .github/workflows/todos-check.yml: ########## @@ -0,0 +1,43 @@ +name: Check TODOs in Changed Files + +on: + pull_request: + branches: + - master + - 'rel/*' + - "rc/*" + paths-ignore: + - 'docs/**' + - 'site/**' + # allow manually run the action: + workflow_dispatch: + +jobs: + todo-check: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Check for TODOs in changed files Review Comment: Check TODO and FIXME? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
