-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "fix: temporarily remove github author names from slack notifi…
- Loading branch information
1 parent
849970c
commit 310fe85
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
data/transform/macros/github_activity_slack_message_generator.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{% macro github_activity_slack_message_generator() -%} | ||
'\n • <' || contribution_url || ' | ' || repo_full_name || ' #' || contribution_number || '> \n' | ||
'\n • <' || contribution_url || ' | ' || repo_full_name || ' #' || contribution_number || '> (*' || author_username || '*)\n' | ||
{%- endmacro %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{% macro slack_message_generator() -%} | ||
'\n • <' || html_url || ' | ' || organization_name || '/' || repo_name || ' #' || GET(split(html_url, '/'), array_size(split(html_url, '/'))-1)::STRING || '> - _' || title || '_' || CASE WHEN singer_contributions.is_hub_listed THEN ' (:melty-flame: < ' || hub_unique.docs || ' | _MeltanoHub Link_>)\n' ELSE '\n' END | ||
'\n • <' || html_url || ' | ' || organization_name || '/' || repo_name || ' #' || GET(split(html_url, '/'), array_size(split(html_url, '/'))-1)::STRING || '> (*' || author_username || '*) - _' || title || '_' || CASE WHEN singer_contributions.is_hub_listed THEN ' (:melty-flame: < ' || hub_unique.docs || ' | _MeltanoHub Link_>)\n' ELSE '\n' END | ||
{%- endmacro %} |