From a601b07ff6ebf00a5d4fc52eda2d7d7e2277d05d Mon Sep 17 00:00:00 2001 From: Dave Snabel-Caunt Date: Mon, 19 Jan 2026 11:12:44 +0000 Subject: [PATCH] Don't lint UID2Prebid podspec during PR tests --- .github/workflows/lint-prebid-podspec.yml | 23 +++++++++++++++++++++++ .github/workflows/test-pull-request.yml | 3 --- 2 files changed, 23 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/lint-prebid-podspec.yml diff --git a/.github/workflows/lint-prebid-podspec.yml b/.github/workflows/lint-prebid-podspec.yml new file mode 100644 index 0000000..2e1e49b --- /dev/null +++ b/.github/workflows/lint-prebid-podspec.yml @@ -0,0 +1,23 @@ +name: Lint Pull Requests for UID2Prebid + +on: + pull_request: + paths: + - UID2Prebid.podspec.json + + # this allows us to manually run this job + workflow_dispatch: + +jobs: + lint-podspec: + name: Lint UID2Prebid Podspec + runs-on: macos-15 + + steps: + - uses: actions/checkout@v4 + + - name: Select Xcode 16.4 + run: sudo xcode-select -s /Applications/Xcode_16.4.app + + - name: Lint OpenPass podspec + run: pod lib lint UID2Prebid.podspec.json --verbose diff --git a/.github/workflows/test-pull-request.yml b/.github/workflows/test-pull-request.yml index 1bed287..6dc432f 100644 --- a/.github/workflows/test-pull-request.yml +++ b/.github/workflows/test-pull-request.yml @@ -45,9 +45,6 @@ jobs: - name: Lint UID2 pod spec run: pod lib lint UID2.podspec.json --verbose - - name: Lint UID2Prebid pod spec - run: pod lib lint UID2Prebid.podspec.json --verbose - vulnerability-scan: name: Vulnerability Scan runs-on: ubuntu-latest