Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/build-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,18 @@ jobs:
# under `dapr/ext/<name>/` claimed by both distributions, and `pip
# uninstall <legacy>` would delete files that core dapr now provides.
# See RELEASE.md and the runtime warning in dapr/__init__.py.

# Opens (or comments on) a tracking issue only when the publish job (PyPI
# upload) fails. Lint/build failures skip publish, so failure() stays false
# and CI flakes don't open issues.
notify-on-failure:
needs: [publish]
if: failure() && startsWith(github.ref, 'refs/tags/v')
permissions:
issues: write
actions: read
uses: dapr/.github/.github/workflows/open-issue-on-failure.yml@main
with:
Comment on lines +118 to +119

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR is dependent on that .github PR per my PR description. 👍🏻

title: "Release workflow failed: ${{ github.workflow }} (${{ github.ref_name }})"
labels: "release,ci/release-failure"
mention: "@dapr/maintainers-python-sdk @dapr/approvers-python-sdk"
Loading