fix(crons): Reset cursor on search #34910
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
name: Self-hosted Sentry end to end tests | |
on: | |
push: | |
branches: | |
- master | |
- releases/** | |
pull_request: | |
# Cancel in progress workflows on pull_requests. | |
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
self-hosted-end-to-end: | |
name: self-hosted tests | |
runs-on: ubuntu-20.04 | |
# temporary, remove once we are confident the action is working | |
continue-on-error: true | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 | |
- name: Check for backend file changes | |
uses: getsentry/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 # v2.11.1 | |
id: changes | |
with: | |
token: ${{ github.token }} | |
filters: .github/file-filters.yml | |
- name: Run Sentry self-hosted e2e CI | |
if: steps.changes.outputs.backend_all == 'true' | |
uses: getsentry/action-self-hosted-e2e-tests@f45ef07793b2cc805a9a9401819f486da449a90a | |
with: | |
project_name: sentry | |
image_url: us.gcr.io/sentryio/sentry:${{ github.event.pull_request.head.sha || github.sha }} | |
docker_repo: getsentry/sentry | |
docker_password: ${{ secrets.DOCKER_HUB_RW_TOKEN }} |