Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,34 @@ jobs:
publish-mode: oidc
build-command: |
npm ci

# On a successful publish (optic publishes when its release PR merges into
# main), tell downstream repos to fast-track the bump of this package, rather
# than waiting for their daily Dependabot run. Receiver: digidem/comapeo-core-react-native.
notify-downstream:
needs: release
if: >-
needs.release.result == 'success' &&
github.event_name == 'pull_request' &&
github.event.pull_request.merged == true
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
downstream:
- owner: digidem
repo: comapeo-core-react-native
steps:
- uses: actions/create-github-app-token@v3
id: token
with:
app-id: ${{ vars.RELEASE_BOT_APP_ID }}
private-key: ${{ secrets.RELEASE_BOT_PRIVATE_KEY }}
owner: ${{ matrix.downstream.owner }}
repositories: ${{ matrix.downstream.repo }}
- env:
GH_TOKEN: ${{ steps.token.outputs.token }}
run: |
gh api repos/${{ matrix.downstream.owner }}/${{ matrix.downstream.repo }}/dispatches \
-f event_type=first-party-release \
-f 'client_payload[package]=@comapeo/map-server'
Loading