Skip to content

Commit 6138400

Browse files
authored
Merge pull request #180 from PostHog/fury-road-context-folder
rename trasnformation-config to context
2 parents d6f0c1e + 8012d7d commit 6138400

910 files changed

Lines changed: 173 additions & 173 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.claude/skills/author-stepwise-skill/SKILL.md

Lines changed: 2 additions & 2 deletions

.github/workflows/e2e.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Discover examples with Playwright configs
2828
id: set-examples
2929
run: |
30-
examples=$(find basics -maxdepth 2 -name "playwright.config.ts" -exec dirname {} \; | sed 's|^basics/||' | jq -R -s -c 'split("\n")[:-1]')
30+
examples=$(find example-apps -maxdepth 2 -name "playwright.config.ts" -exec dirname {} \; | sed 's|^example-apps/||' | jq -R -s -c 'split("\n")[:-1]')
3131
echo "examples=$examples" >> $GITHUB_OUTPUT
3232
echo "Found examples: $examples"
3333
@@ -53,17 +53,17 @@ jobs:
5353

5454
- name: Install dependencies
5555
run: |
56-
cd basics/${{ matrix.example }}
56+
cd example-apps/${{ matrix.example }}
5757
pnpm install
5858
5959
- name: Install Playwright Browsers
6060
run: |
61-
cd basics/${{ matrix.example }}
61+
cd example-apps/${{ matrix.example }}
6262
pnpm exec playwright install chromium --with-deps
6363
6464
- name: Run E2E Playwright tests
6565
run: |
66-
cd basics/${{ matrix.example }}
66+
cd example-apps/${{ matrix.example }}
6767
pnpm run test:e2e
6868
env:
6969
NEXT_PUBLIC_POSTHOG_KEY: ${{ vars.NEXT_PUBLIC_POSTHOG_KEY }}
@@ -105,6 +105,6 @@ jobs:
105105
if: always()
106106
with:
107107
name: playwright-report-${{ matrix.example }}
108-
path: basics/${{ matrix.example }}/playwright-report/
108+
path: example-apps/${{ matrix.example }}/playwright-report/
109109
retention-days: 30
110110

.github/workflows/integration.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Discover examples with Playwright configs
3232
id: set-examples
3333
run: |
34-
examples=$(find basics -maxdepth 2 -name "playwright.config.ts" -exec dirname {} \; | sed 's|^basics/||' | jq -R -s -c 'split("\n")[:-1]')
34+
examples=$(find example-apps -maxdepth 2 -name "playwright.config.ts" -exec dirname {} \; | sed 's|^example-apps/||' | jq -R -s -c 'split("\n")[:-1]')
3535
echo "examples=$examples" >> $GITHUB_OUTPUT
3636
echo "Found examples: $examples"
3737
@@ -57,17 +57,17 @@ jobs:
5757

5858
- name: Install dependencies
5959
run: |
60-
cd basics/${{ matrix.example }}
60+
cd example-apps/${{ matrix.example }}
6161
pnpm install
6262
6363
- name: Install Playwright Browsers
6464
run: |
65-
cd basics/${{ matrix.example }}
65+
cd example-apps/${{ matrix.example }}
6666
pnpm exec playwright install chromium --with-deps
6767
6868
- name: Run Integration Playwright tests
6969
run: |
70-
cd basics/${{ matrix.example }}
70+
cd example-apps/${{ matrix.example }}
7171
pnpm run test:integration
7272
env:
7373
NEXT_PUBLIC_POSTHOG_KEY: ${{ vars.NEXT_PUBLIC_POSTHOG_KEY }}
@@ -107,5 +107,5 @@ jobs:
107107
if: always()
108108
with:
109109
name: playwright-report-${{ matrix.example }}
110-
path: basics/${{ matrix.example }}/playwright-report/
110+
path: example-apps/${{ matrix.example }}/playwright-report/
111111
retention-days: 30

.semgrepignore

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010

1111
# Android launcher activity exported=true is required for MAIN/LAUNCHER intent filter
1212
# This is standard React Native / Android boilerplate, not a security issue
13-
basics/react-native/android/app/src/main/AndroidManifest.xml
14-
basics/expo/android/app/src/main/AndroidManifest.xml
15-
basics/android/app/src/main/AndroidManifest.xml
13+
example-apps/react-native/android/app/src/main/AndroidManifest.xml
14+
example-apps/expo/android/app/src/main/AndroidManifest.xml
15+
example-apps/android/app/src/main/AndroidManifest.xml
1616

1717
# Markdown audit reference contains HogQL examples with PostHog $host event property.
1818
# Semgrep's nginx host-header rule misidentifies this docs-only SQL as nginx config.
19-
transformation-config/skills/audit-events/references/3-events-optimize.md
20-
transformation-config/skills/web-analytics/references/checks.md
21-
transformation-config/skills/web-analytics/references/remediation.md
19+
context/skills/audit-events/references/3-events-optimize.md
20+
context/skills/web-analytics/references/checks.md
21+
context/skills/web-analytics/references/remediation.md

README.md

Lines changed: 3 additions & 3 deletions

transformation-config/skills/audit-3000/BUILD_NOTES.md renamed to context/skills/audit-3000/BUILD_NOTES.md

Lines changed: 2 additions & 2 deletions
File renamed without changes.

0 commit comments

Comments
 (0)