Skip to content

Commit c12c967

Browse files
committed
chore: skipping demo projects
1 parent 713cd3e commit c12c967

2 files changed

Lines changed: 10 additions & 7 deletions

File tree

.github/workflows/main.yaml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,22 @@ jobs:
1414
needs: build
1515
uses: ./.github/workflows/check.yaml
1616

17-
test-demo-projects:
18-
needs: [build, check]
19-
uses: ./.github/workflows/test-demo-projects.yaml
20-
secrets: inherit
17+
# Skipping for now as demo projects aren't currently running in GHA
18+
# test-demo-projects:
19+
# needs: [build, check]
20+
# uses: ./.github/workflows/test-demo-projects.yaml
21+
# secrets: inherit
2122

2223
test-integration:
23-
needs: [build, check, test-demo-projects]
24+
# needs: [build, check, test-demo-projects]
25+
needs: [build, check]
2426
uses: ./.github/workflows/test-integration.yaml
2527
secrets: inherit
2628

2729
release:
2830
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/beta' || github.ref == 'refs/heads/canary' || github.ref == 'refs/heads/dx-542-update-to-gha')
29-
needs: [build, check, test-demo-projects, test-integration]
31+
# needs: [build, check, test-demo-projects, test-integration]
32+
needs: [build, check, test-integration]
3033
permissions:
3134
contents: write
3235
id-token: write

.github/workflows/test-demo-projects.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
required: true
1010

1111
jobs:
12-
test-integration:
12+
test-demo-projects:
1313
runs-on: ubuntu-latest
1414

1515
permissions:

0 commit comments

Comments
 (0)