ci: announce only new public API in the SDK API feed #1703
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: Re-run Danger on label change | |
| # When Danger fails on CircleCI because a required label is missing, adding | |
| # the label doesn't produce a new commit, so CircleCI never re-runs Danger. | |
| # Delegates to the shared reusable workflow in sdk-github-workflows. | |
| on: | |
| pull_request: | |
| types: [labeled, unlabeled] | |
| permissions: {} | |
| jobs: | |
| rerun-danger: | |
| # Only run on the canonical repo (not on forks of this repo that would | |
| # inherit the workflow file). The shared workflow handles the fork-PR | |
| # filter internally. | |
| if: github.repository == 'RevenueCat/purchases-ios' | |
| uses: revenuecat/sdk-github-workflows/.github/workflows/rerun-danger.yml@cfa01c8b37ff29e10067e10644d64c07c3f3b1cb | |
| with: | |
| project_slug: gh/RevenueCat/purchases-ios | |
| secrets: | |
| CIRCLECI_TOKEN: ${{ secrets.CIRCLECI_TOKEN }} |