Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sahejkm committed May 28, 2024
1 parent be93306 commit 0293f04
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/after-approval.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ concurrency:

jobs:
label-pr:
if: github.event.review.state == 'commented' && !contains(github.event.pull_request.labels.*.name, 'extended-tests')
if: github.event.review.state == 'approved' && !contains(github.event.pull_request.labels.*.name, 'extended-tests')
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down
34 changes: 17 additions & 17 deletions .github/workflows/tests-extended.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
# name: Lexical Tests (Extended)
name: Lexical Tests (Extended)

# on:
# pull_request:
# types: [labeled, synchronize, reopened]
# paths-ignore:
# - 'packages/lexical-website/**'
# - 'packages/*/README.md'
on:
pull_request:
types: [labeled, synchronize, reopened]
paths-ignore:
- 'packages/lexical-website/**'
- 'packages/*/README.md'

# concurrency:
# group: ${{ github.workflow }}-${{ github.ref }}
# cancel-in-progress: true
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

# jobs:
# e2e-tests:
# if: github.repository_owner == 'facebook' && contains(github.event.pull_request.labels.*.name, 'extended-tests')
# uses: ./.github/workflows/call-e2e-all-tests.yml
jobs:
# e2e-tests:
# if: github.repository_owner == 'facebook' && contains(github.event.pull_request.labels.*.name, 'extended-tests')
# uses: ./.github/workflows/call-e2e-all-tests.yml

# integration-tests:
# if: github.repository_owner == 'facebook' && contains(github.event.pull_request.labels.*.name, 'extended-tests')
# uses: ./.github/workflows/call-integration-tests.yml
integration-tests:
if: github.repository_owner == 'facebook' && contains(github.event.pull_request.labels.*.name, 'extended-tests')
uses: ./.github/workflows/call-integration-tests.yml

0 comments on commit 0293f04

Please sign in to comment.