Skip to content

Commit

Permalink
Disabling check for now
Browse files Browse the repository at this point in the history
  • Loading branch information
goergisn authored Jan 2, 2025
1 parent 1e399c4 commit 0b1a76d
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/detect_api_changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,25 @@ on:
old:
description: 'Branch/tag of the old/comparison version'
required: true

permissions:
pull-requests: write
contents: read

jobs:
build:
runs-on: macos-14 # Apple Silicon Runner

steps:
- uses: actions/checkout@v4
- uses: n1hility/cancel-previous-runs@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Exit if fork PR
run: |
# Disabling this check from PRs of forked repositories because of insufficient access permissions
if [[ "${{ env.headGithubRepo }}" != "${{ env.baseGithubRepo }}" ]]; then
echo "The head repository is different from the base repository. Exiting..."
exit 0
fi
- name: Select latest Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
Expand Down

0 comments on commit 0b1a76d

Please sign in to comment.