chore(deps): bump @sentry/react from 6.18.1-beta.0 to 9.0.0 #995
Workflow file for this run
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
# Dispatch a request to getsentry to run getsentry test suites | |
name: getsentry dispatcher | |
on: | |
# XXX: We are using `pull_request_target` instead of `pull_request` because we want | |
# this to run on forks. It allows forks to access secrets safely by | |
# only running workflows from the main branch. Prefer to use `pull_request` when possible. | |
# | |
# See https://github.com/getsentry/sentry/pull/21600 for more details | |
pull_request_target: | |
jobs: | |
dispatch: | |
name: getsentry dispatch | |
runs-on: ubuntu-20.04 | |
steps: | |
# Need to checkout just for `github/file-filters.yml` | |
- uses: actions/checkout@v2 | |
- name: Check for file changes | |
uses: getsentry/paths-filter@v2 | |
id: changes | |
with: | |
token: ${{ github.token }} | |
filters: .github/file-filters.yml | |
- name: getsentry token | |
uses: getsentry/action-github-app-token@v1 | |
id: getsentry | |
with: | |
app_id: ${{ secrets.SENTRY_INTERNAL_APP_ID }} | |
private_key: ${{ secrets.SENTRY_INTERNAL_APP_PRIVATE_KEY }} | |
- name: Dispatch getsentry tests | |
uses: actions/github-script@v3 | |
with: | |
github-token: ${{ steps.getsentry.outputs.token }} | |
script: | | |
require(`${process.env.GITHUB_WORKSPACE}/.github/workflows/scripts/getsentry-dispatch`).dispatch({ | |
github, | |
context, | |
fileChanges: ${{ toJson(steps.changes.outputs) }} | |
}); |