Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/github_actions/actions/checkout-4
Browse files Browse the repository at this point in the history
  • Loading branch information
eiriksm authored Nov 29, 2024
2 parents b32c7b5 + 0b55d2f commit 7d79695
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
steps:
- name: Trigger Workflow
uses: actions/github-script@v7
if: ${{ github.event_name != 'pull_request' }}
if: ${{ github.event_name == 'push' }}
with:
github-token: ${{ secrets.PAT }}
script: |
Expand Down
2 changes: 1 addition & 1 deletion built/createJob.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion built/createJob.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/createJob.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function createJob (config, job: Job, gitRev) {
runLog.log.info('Starting container for', data.slug)
var startTime = Date.now()
try {
const container = await docker.run(dockerImage, ['php', '/runner'], [stdout, stderr], {
const container = await docker.run(dockerImage, ['php', '/app/runner'], [stdout, stderr], {
HostConfig: getHostConfig(type, config),
Env: env,
Binds: binds,
Expand Down

0 comments on commit 7d79695

Please sign in to comment.