Search before asking
Version
master
Minimal reproduce step
- create a PR with changes to pulsar-function-go which break the build
- add a commit outside of pulsar-function-go
- the CI build passes successfully and makes the PR mergable
What did you expect to see?
- if the pulsar-function-go job fails for the PR, it shouldn't make the CI build mergable
What did you see instead?
Anything else?
This is a known limitation of the way how the GitHub Actions workflow ci-go-functions.yaml has been configured to trigger for changes to pulsar-function-go/** path
on:
pull_request:
branches:
- master
paths:
- '.github/workflows/**'
- 'pulsar-function-go/**'
workflow_dispatch:
the problem would be fixed by using apache/pulsar-test-infra/paths-filter@master for detecting changed files in ci-go-functions.yaml.
Are you willing to submit a PR?
Search before asking
Version
master
Minimal reproduce step
What did you expect to see?
What did you see instead?
Anything else?
This is a known limitation of the way how the GitHub Actions workflow ci-go-functions.yaml has been configured to trigger for changes to
pulsar-function-go/**paththe problem would be fixed by using
apache/pulsar-test-infra/paths-filter@masterfor detecting changed files inci-go-functions.yaml.Are you willing to submit a PR?