Change issue text on daily/stubsabot failure to include exact run URL (#13210)

Use current run URL in issue body
This commit is contained in:
Brian Schubert
2024-12-06 15:19:32 -05:00
committed by GitHub
parent 21c85bae39
commit 0e9c9e1362
2 changed files with 2 additions and 2 deletions

View File

@@ -144,6 +144,6 @@ jobs:
owner: "python",
repo: "typeshed",
title: `Daily tests failed on ${new Date().toDateString()}`,
body: "Runs listed here: https://github.com/python/typeshed/actions/workflows/daily.yml",
body: "Run listed here: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}",
labels: ["help wanted"],
})

View File

@@ -52,5 +52,5 @@ jobs:
owner: "python",
repo: "typeshed",
title: `Stubsabot failed on ${new Date().toDateString()}`,
body: "Stubsabot runs are listed here: https://github.com/python/typeshed/actions/workflows/stubsabot.yml",
body: "Stubsabot run is listed here: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}",
})