@@ -2,8 +2,8 @@ name: Update App Events Data
22
33on :
44 schedule :
5- - cron : ' 0 0 * * 1' # Run every Monday at 00:00 UTC
6- workflow_dispatch : # Allow manual triggering
5+ - cron : " 0 0 * * 1" # Run every Monday at 00:00 UTC
6+ workflow_dispatch : # Allow manual triggering
77
88jobs :
99 update-app-events-data :
1212 - name : Checkout App Events Generator
1313 uses : actions/checkout@v4
1414
15- - name : Checkout Discourse Core
16- uses : actions/checkout@v4
17- with :
18- repository : discourse/discourse
19- path : ' discourse'
20-
2115 - name : Setup Node.js
2216 uses : actions/setup-node@v4
2317 with :
@@ -31,14 +25,20 @@ jobs:
3125 - name : Install Dependencies
3226 run : pnpm install
3327
28+ - name : Checkout Discourse Core
29+ uses : actions/checkout@v4
30+ with :
31+ repository : discourse/discourse
32+ path : " discourse"
33+
3434 - name : Create .env file
3535 run : echo "DISCOURSE_CORE=./discourse" > .env
3636
3737 - name : Extract App Events
38- run : node scripts/extract_app_events.mjs
38+ run : node ./ scripts/extract_app_events.mjs
3939
4040 - name : Generate App Events Details Doc
41- run : node scripts/create_app_events_doc_markdown.mjs
41+ run : node ./ scripts/create_app_events_doc_markdown.mjs
4242
4343 - name : Create Pull Request
4444 uses : peter-evans/create-pull-request@v7
0 commit comments