Build on Mac OS new Clang version fails due to a bug in Boost library which is fixed in later Boost versions [CTT-716] [API-2328] #150
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: Create Jira issue | |
| on: | |
| issues: | |
| types: labeled | |
| jobs: | |
| jira: | |
| if: ${{ github.event.label.name == 'to-jira' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Call composite action | |
| uses: hazelcast/github-jira-tool-action@v6 | |
| with: | |
| JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} | |
| JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} | |
| JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }} | |
| TARGET_JIRA_PROJECT: API | |
| JIRA_LABEL: C++ | |
| ISSUE_TYPE: Bug |