weiqingy commented on PR #2414: URL: https://github.com/apache/auron/pull/2414#issuecomment-5039374616
The failing `triage` check on this PR is expected and does not indicate a problem with the change. The labeler workflow runs on `pull_request_target`, so it reads `.github/labeler.yml` from the base branch (master), not from this PR. The error is `deficient indentation (27:7)`, which points at the closing `]` on line 27 of the current file on master. This PR rewrites those lists as block sequences and has no `]` in the file at all, so that error cannot come from this PR's version. The check is parsing the old config on master, not the fix here. Once this merges, master carries the block-style config and the next triage run on open PRs parses cleanly. Verified locally with js-yaml 5.2.1 (the version labeler v7 resolves): the current file throws `deficient indentation (27:7)`, and the updated file parses into the same 17 labels and 36 glob patterns. -- 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]
