Skip to content

Commit

Permalink
test: skip in draft
Browse files Browse the repository at this point in the history
  • Loading branch information
pcheremu committed May 2, 2024
1 parent bb17a08 commit 7959fd7
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/api-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:

jobs:
runE2ETests:
if: github.event.pull_request.draft == false
name: Run E2E tests
timeout-minutes: 10
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/app-deploy-feature-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on: pull_request

jobs:
build:
if: github.event.pull_request.draft == false
name: Build and Test App
runs-on: ubuntu-latest
permissions:
Expand Down Expand Up @@ -65,6 +66,7 @@ jobs:
entryPoint: ./packages/app

mainnet:
if: github.event.pull_request.draft == false
needs: build
name: Feature on Mainnet + Sepolia
uses: ./.github/workflows/app-e2e.yml
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/app-deploy-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ name: Deploy App to Preview
default: "v2.0.0"
jobs:
deploy:
if: github.event.pull_request.draft == false
name: Deploy
runs-on: ubuntu-latest
permissions:
Expand Down Expand Up @@ -62,6 +63,7 @@ jobs:
echo "Block explorer app has been deployed to: ${{ steps.deploy.outputs.details_url }}"
mainnet:
if: github.event.pull_request.draft == false
needs: deploy
name: Staging on Mainnet + Sepolia
uses: ./.github/workflows/app-e2e.yml
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/app-deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ name: Deploy App to Production
default: "v2.0.0"
jobs:
deploy:
if: github.event.pull_request.draft == false
name: Deploy
runs-on: ubuntu-latest
permissions:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/nodejs-license.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ env:

jobs:
generate-matrix:
if: github.event.pull_request.draft == false
name: Lists modules
runs-on: ubuntu-latest
permissions:
Expand All @@ -43,6 +44,7 @@ jobs:
id: set-matrix
license-check:
if: github.event.pull_request.draft == false
needs: [generate-matrix]
runs-on: ubuntu-latest
permissions:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:

jobs:
createReleaseVersion:
if: github.event.pull_request.draft == false
name: Create Release Version
runs-on: ubuntu-latest
permissions:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/validate-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:

jobs:
label:
if: github.event.pull_request.draft == false
name: Validate PR title
runs-on: ubuntu-latest
permissions:
Expand All @@ -22,6 +23,7 @@ jobs:
GITHUB_TOKEN: ${{ github.token }}

build:
if: github.event.pull_request.draft == false
name: Build and Test
runs-on: ubuntu-latest
permissions:
Expand Down

0 comments on commit 7959fd7

Please sign in to comment.