diff --git a/.github/workflows/auto-merge-dependabot-prs.yml b/.github/workflows/auto-merge-dependabot-prs.yml index 7ee688f20..851ad9a4a 100644 --- a/.github/workflows/auto-merge-dependabot-prs.yml +++ b/.github/workflows/auto-merge-dependabot-prs.yml @@ -54,6 +54,7 @@ jobs: run_id: context.payload.workflow_run.id, }); console.log("download artifact: got allArtifacts") + console.log("download artifact: allArtifacts: ", allArtifacts) let matchArtifact = allArtifacts.data.artifacts.filter((artifact) => { return artifact.name == "pr_number" })[0]; diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 95d177e85..c66e8ecef 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -314,7 +314,11 @@ jobs: - uses: actions/upload-artifact@v3 with: name: pr_number - path: pr/ + # at https://github.com/sartography/spiff-arena/actions/runs/7757308061/job/21156982087, for example, + # it said: "Warning: No files were found with the provided path: pr", so assuming this is running + # from spiff-arena root rather than the default working-directory we specified, and therefore + # trying to explicitly add spiffworkflow-backend to path + path: spiffworkflow-backend/pr/ tests-frontend: runs-on: ubuntu-latest