Skip to content
Merged
Changes from 1 commit
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
16 changes: 16 additions & 0 deletions .github/workflows/release-on-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,19 @@ jobs:
description: Release
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }}
avatarUrl: https://github.githubassets.com/images/modules/logos_page/Octocat.png

# Opens (or comments on) a tracking issue when the release fails. This
# workflow only triggers on v* tags, so failure() already implies a release.
Comment thread
cicoyle marked this conversation as resolved.
Outdated
notify-on-failure:
needs: [build]
if: failure()
permissions:
issues: write
actions: read
uses: dapr/.github/.github/workflows/open-issue-on-failure.yml@main
with:
Comment on lines +82 to +86

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 publish failed: ${{ github.workflow }} (${{ github.ref_name }})"
labels: "release,ci/publish-failure"
mention: "@dapr/maintainers-go-sdk @dapr/approvers-go-sdk"
Comment thread
cicoyle marked this conversation as resolved.
secrets:
dapr_bot_token: ${{ secrets.DAPR_BOT_TOKEN }}
Loading