This repository was archived by the owner on Jul 28, 2025. It is now read-only.
Sync Kafka Connect Docs from kafka-connect-mesh v0.3.1 #757
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Check connector files | |
| on: | |
| pull_request: | |
| branches: | |
| - '*' | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| repository: streamnative/streamnative-ci | |
| token: ${{ secrets.SNBOT_GITHUB_TOKEN }} | |
| path: ci | |
| ref: master | |
| - uses: actions/checkout@v3 | |
| with: | |
| repository: streamnative/pulsar-hub | |
| token: ${{ secrets.SNBOT_GITHUB_TOKEN }} | |
| ref: ${{ github.ref }} | |
| path: prm | |
| - name: checking the pull request | |
| run: | | |
| export PATH=${PATH}:${PWD}/ci/projects/pulsar-registry-metadata | |
| install-dependencies.sh | |
| pushd prm | |
| check.sh | |
| popd | |