Skip to content

Commit 383c72e

Browse files
Merge pull request #54 from edenlabllc/feature/FFS-53-fix-sending-notifications-to-slack-channel
fix sending notifications to slack channel
2 parents 6e854cb + a04a3b7 commit 383c72e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/actions/github_project_manager.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,8 @@ def create_git_tag_and_release(self):
107107
else:
108108
raise RuntimeError(f"failed to check or create GitHub release: {err}")
109109

110-
self._handle_notify_slack()
110+
if self.args.slack_notifications:
111+
self._handle_notify_slack()
111112

112113
def _get_latest_valid_version_tag(self):
113114
tags = sorted(self.repo.tags, key=lambda t: t.commit.committed_date)

0 commit comments

Comments
 (0)