We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebe8c19 commit ae87f59Copy full SHA for ae87f59
.github/workflows/primer_comment.yaml
@@ -22,14 +22,14 @@ jobs:
22
with:
23
script: |
24
const fs = require('fs');
25
- const artifacts = await github.actions.listWorkflowRunArtifacts({
+ const artifacts = await github.rest.actions.listWorkflowRunArtifacts({
26
owner: context.repo.owner,
27
repo: context.repo.repo,
28
run_id: ${{ github.event.workflow_run.id }},
29
});
30
const [matchArtifact] = artifacts.data.artifacts.filter((artifact) =>
31
artifact.name == "primer_diffs");
32
- const download = await github.actions.downloadArtifact({
+ const download = await github.rest.actions.downloadArtifact({
33
34
35
artifact_id: matchArtifact.id,
0 commit comments