Skip to content

Commit

Permalink
Fix path to automation .mjs files
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvkb committed Nov 23, 2023
1 parent 8d8d4ea commit c2e0310
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/issue_automations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ jobs:
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const { main } = await import('./automations/js/project_automation/issues.mjs')
const { main } = await import('./automations/js/src/project_automation/issues.mjs')
await main(github, context)
2 changes: 1 addition & 1 deletion .github/workflows/pr_automations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,5 +76,5 @@ jobs:
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const { main } = await import('./automations/js/project_automation/prs.mjs')
const { main } = await import('./automations/js/src/project_automation/prs.mjs')
await main(github)

0 comments on commit c2e0310

Please sign in to comment.