ci: add pull-requests read permission to lint-pr-title workflow #366
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: libs/networking | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths-ignore: | |
| - '**.md' #Do not need to run CI for markdown changes. | |
| pull_request: | |
| branches: [ main, "feat/**" ] | |
| paths-ignore: | |
| - '**.md' | |
| jobs: | |
| build-test-networking: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| # https://github.com/actions/checkout/releases/tag/v4.3.0 | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 | |
| - uses: ./.github/actions/ci | |
| with: | |
| cmake_target: launchdarkly-cpp-networking | |
| use_curl: 'true' | |
| # Project doesn't have tests at this time. | |
| run_tests: 'false' |