ci: Add support for prebuilt macOS binaries #6923
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
# workflows/lint-pr-title.yml | |
# | |
# Lint PR Title | |
# Lint and enforce proper PR title format. | |
name: Lint PR Title | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review, edited] | |
permissions: | |
pull-requests: read | |
concurrency: | |
group: lint-pr-title-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint-pr-title: | |
name: Validate PR Title | |
runs-on: ubicloud-standard-2 | |
if: github.event.pull_request.draft == false | |
steps: | |
- name: Checkout Git Repository | |
uses: amannn/action-semantic-pull-request@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |