Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use only major version of slackify-markdown-action #180

Merged
merged 1 commit into from
Jun 7, 2024
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
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,28 +7,28 @@ runs:
- name: "Slack-Markdown Message Conversion"
if: env.SLACKIFY_MARKDOWN == 'true'
id: slackify_message
uses: LoveToKnow/slackify-markdown-action@v1.0.2
uses: LoveToKnow/slackify-markdown-action@v1
with:
text: ${{ env.SLACK_MESSAGE }}

- name: "Slack-Markdown Success Message Conversion"
if: env.SLACKIFY_MARKDOWN == 'true'
id: slackify_success_message
uses: LoveToKnow/slackify-markdown-action@v1.0.2
uses: LoveToKnow/slackify-markdown-action@v1
with:
text: ${{ env.SLACK_MESSAGE_ON_SUCCESS }}

- name: "Slack-Markdown Failure Message Conversion"
if: env.SLACKIFY_MARKDOWN == 'true'
id: slackify_failure_message
uses: LoveToKnow/slackify-markdown-action@v1.0.2
uses: LoveToKnow/slackify-markdown-action@v1
with:
text: ${{ env.SLACK_MESSAGE_ON_FAILURE }}

- name: "Slack-Markdown Cancel Message Conversion"
if: env.SLACKIFY_MARKDOWN == 'true'
id: slackify_cancel_message
uses: LoveToKnow/slackify-markdown-action@v1.0.2
uses: LoveToKnow/slackify-markdown-action@v1
with:
text: ${{ env.SLACK_MESSAGE_ON_CANCEL }}

Expand Down