Modify code that uses hdf5.h directly (other than napi5.h) to use H5Cpp and H5Util #17126
Workflow file for this run
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
name: 'Check for merge conflicts' | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'release-next' | |
- 'ornl-next' | |
pull_request: | |
types: [opened, synchronize, reopened] | |
permissions: | |
issues: write | |
pull-requests: write | |
jobs: | |
label-conflicts: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: prince-chrismc/label-merge-conflicts-action@v3 | |
with: | |
conflict_label_name: "Has Conflicts" | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
# These are optional incase you need to adjust for the limitations described below | |
max_retries: 5 | |
wait_ms: 15000 | |
detect_merge_changes: false | |
conflict_comment: ":wave: Hi, @${author},\n\nConflicts have been detected against the base branch. Please rebase your branch against the base branch." |