Add optional title property for tool object (#191) #118
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: Validate PR | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| types: [auto_merge_enabled] | |
| jobs: | |
| validate-pr: | |
| runs-on: macos-latest | |
| name: Validate PR | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '21' | |
| distribution: 'temurin' | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@ac638b010cf58a27ee6c972d7336334ccaf61c96 # v4.4.1 | |
| - name: Clean Build with Gradle | |
| run: ./gradlew clean build | |
| - name: Disable Auto-Merge on Fail | |
| if: failure() | |
| run: gh pr merge --disable-auto "$PR_URL" | |
| env: | |
| PR_URL: ${{github.event.pull_request.html_url}} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |