feat: add migration 082 to reset PhishingController phishingLists #4136
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: Run Bitrise E2E Gate | |
on: | |
pull_request: | |
types: [labeled, synchronize] | |
merge_group: # Trigger on merge queue events to satisfy the branch protection rules | |
types: [checks_requested] | |
env: | |
E2E_LABEL: 'Run Smoke E2E' | |
NO_E2E_LABEL: 'No E2E Smoke Needed' | |
E2E_PIPELINE: 'pr_smoke_e2e_pipeline' | |
WORKFLOW_NAME: 'run-bitrise-e2e-check' | |
jobs: | |
run-bitrise-e2e-gate: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
contents: write | |
checks: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Install dependencies | |
run: yarn --immutable | |
working-directory: '.github/scripts' | |
- name: Check Bitrise E2E Gate | |
env: | |
BITRISE_BUILD_TRIGGER_TOKEN: ${{ secrets.BITRISE_BUILD_TRIGGER_TOKEN }} | |
BITRISE_APP_ID: ${{ secrets.BITRISE_APP_ID }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: yarn run bitrise-results-check | |
working-directory: '.github/scripts' | |