Add DATAREADER_QOS_USE_TOPIC_QOS and DATAWRITER_QOS_USE_TOPIC_QOS doc… #229
This file contains 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
# .github/workflows/mirror.yml | |
on: | |
push: | |
branches: | |
- 'master' | |
jobs: | |
mirror_job: | |
name: Mirror master branch to latest minor branches | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
dest_branch: | |
- '2.14.x' | |
steps: | |
- name: Mirror action step | |
id: mirror | |
uses: eProsima/eProsima-CI/external/mirror-branch-action@main | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
source: 'master' | |
dest: ${{ matrix.dest_branch }} |