Update detect_api_changes.yml #1060
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: 👀 Detect public API changes | |
on: | |
pull_request_target: | |
types: [opened, synchronize, reopened, labeled, unlabeled, edited] | |
pull_request: | |
types: [opened, synchronize, reopened, labeled, unlabeled, edited] | |
permissions: | |
pull-requests: write | |
jobs: | |
build: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Select latest Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '16.1' | |
- name: 🚚 Fetch repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- if: ${{ github.event.pull_request.base.ref != '' }} | |
name: Test Comment PR | |
uses: thollander/actions-comment-pull-request@v3 | |
with: | |
message: "Hello World from Fork" | |
comment-tag: test_comment |