We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91d2a09 commit a311e57Copy full SHA for a311e57
.github/workflows/validate-downstream.yml
@@ -63,6 +63,10 @@ jobs:
63
const ruffFailed = '${{ steps.ruff.outcome }}' === 'failure';
64
const pytestFailed = '${{ steps.pytest.outcome }}' === 'failure';
65
66
+ const owner = context.repo.owner;
67
+ const repo = context.repo.repo;
68
+ const issue_number = context.issue.number;
69
+
70
const constructLogURL = (stepId) => {
71
return `https://github.com/${owner}/${repo}/actions/runs/${{ github.run_id }}/jobs/${{ job.id }}/steps/${stepId}/logs`;
72
};
0 commit comments