feat: implement CUBRID Rust driver with 4 crates and 95%+ test coverage #2
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: Sync Repository Labels | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - .github/labels.yml | |
| permissions: | |
| issues: write | |
| jobs: | |
| sync-labels: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Sync labels from labels.yml | |
| uses: EndBug/label-sync@v2 | |
| with: | |
| config-file: .github/labels.yml | |
| token: ${{ secrets.GITHUB_TOKEN }} |