Skip to content

Commit

Permalink
format script
Browse files Browse the repository at this point in the history
  • Loading branch information
cortisiko committed Oct 11, 2024
1 parent a5cb178 commit 5c2310a
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions .github/workflows/e2e-merge-queue-check.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: E2E Merge Queue Check

on:
push:
branches: main
Expand All @@ -8,18 +9,20 @@ on:

jobs:
apply-smoke-label:
runs-on: ubuntu-latest
steps:
- name: Apply "Run Smoke E2E" label
uses: octokit/[email protected]
with:
route: POST /repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/labels
labels: 'Run Smoke E2E'
env:
runs-on: ubuntu-latest
steps:
- name: Apply "Run Smoke E2E" label
uses: octokit/[email protected]
with:
route: POST /repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/labels
labels: 'Run Smoke E2E'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

run-e2e-check:
uses: ./.github/workflows/bitrise-e2e-check.yml # Reuse the bitrise check workflow
runs-on: ubuntu-latest
needs: apply-smoke-label
uses: ./.github/workflows/bitrise-e2e-check.yml # Reuse the Bitrise check workflow
with:
pr_number: ${{ github.event.number || github.event.pull_request.number }}
e2e_label: 'Run Smoke E2E'
Expand All @@ -28,5 +31,3 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BITRISE_BUILD_TRIGGER_TOKEN: ${{ secrets.BITRISE_BUILD_TRIGGER_TOKEN }}
BITRISE_APP_ID: ${{ secrets.BITRISE_APP_ID }}


0 comments on commit 5c2310a

Please sign in to comment.