Skip to content
Merged
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
5 changes: 4 additions & 1 deletion tools/repo/notify.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,9 @@ async def post_to_oncall(self):
text=(
f"*{num_issues} Untriaged Issues* (please tag and cc area experts)\n<{ISSUE_LINK}|{ISSUE_LINK}>"
))
await self.send_message(
channel='#envoy-maintainer-oncall',
text=(f"*Pending Deployments* (workflow runs that need manual approval from maintainer)\n<{"https://github.com/envoyproxy/envoy/actions/workflows/request.yml?query=is%3Aaction_required"}>"))
await self.send_message(
channel='#envoy-ci',
text=(
Expand All @@ -335,7 +338,7 @@ async def track_open_issues(self):
return len(await response.json())

async def run(self):
if not self.github_token:
if not self.github_token and not self.dry_run:
self.log.error("Missing GITHUB_TOKEN: please check github workflow configuration")
return 1

Expand Down
Loading