Skip to content

Commit 2147c49

Browse files
committed
tmp
1 parent 382495b commit 2147c49

3 files changed

Lines changed: 34 additions & 16 deletions

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Creator Hub Simple Test
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- main
8+
- experimental
9+
pull_request:
10+
11+
jobs:
12+
test:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
18+
- name: Debug
19+
run: |
20+
echo "Creator Hub Simple workflow triggered!"
21+
echo "Event: ${{ github.event_name }}"
22+
echo "Ref: ${{ github.ref }}"
23+
echo "Branch: ${{ github.ref_name }}"
24+
ls -la packages/@dcl/creator-hub/

.github/workflows/creator-hub.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
name: Creator Hub CI/CD
22

3-
# This workflow handles all Creator Hub related CI/CD processes
43
on:
54
workflow_dispatch:
65
push:

.github/workflows/ready_for_review.yml

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
name: Manual - Lint & Snapshot update
1+
name: Ready for Review
22

33
on:
44
workflow_dispatch:
5-
# Also trigger on Creator Hub changes
65
push:
7-
paths:
8-
- 'packages/@dcl/creator-hub/**'
9-
- 'packages/@dcl/inspector/**'
6+
branches:
7+
- main
8+
- experimental
109
pull_request:
11-
paths:
12-
- 'packages/@dcl/creator-hub/**'
13-
- 'packages/@dcl/inspector/**'
10+
release:
11+
types:
12+
- created
1413

1514
jobs:
1615
# ============================================================================
@@ -49,11 +48,11 @@ jobs:
4948
commit_message: automatic linter and snapshot tests
5049

5150
# ============================================================================
52-
# Creator Hub Lint & Snapshot Update
51+
# Creator Hub Lint
5352
# ============================================================================
5453

5554
creator-hub-lint:
56-
name: Creator Hub Lint & Snapshot Update
55+
name: Creator Hub Lint
5756
runs-on: ubuntu-latest
5857
if: |
5958
github.event_name == 'workflow_dispatch' ||
@@ -82,10 +81,6 @@ jobs:
8281
run: npm run lint:fix --if-present
8382
working-directory: packages/@dcl/creator-hub
8483

85-
- name: Run Creator Hub tests
86-
run: npm run test:main --if-present
87-
working-directory: packages/@dcl/creator-hub
88-
8984
- uses: stefanzweifel/git-auto-commit-action@v4
9085
with:
91-
commit_message: automatic creator hub linter and tests
86+
commit_message: automatic creator hub linter

0 commit comments

Comments
 (0)