Merge branch 'main' into pre #31
Workflow file for this run
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
name: Slack Pre | |
on: | |
push: | |
branches: | |
- pre | |
jobs: | |
notification: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Succeeded Check | |
uses: sonots/slack-notice-action@pre | |
with: | |
status: Success | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL_FOR_INTEGRATION_TEST }} | |
- name: Failed Check | |
uses: sonots/slack-notice-action@pre | |
with: | |
status: Failure | |
only_mention_fail: here | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL_FOR_INTEGRATION_TEST }} | |
- name: Canceled Check | |
uses: sonots/slack-notice-action@pre | |
with: | |
status: Cancelled | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL_FOR_INTEGRATION_TEST }} | |
- name: Legacy Check | |
uses: sonots/slack-notice-action@pre | |
with: | |
status: ${{ job.status }} | |
username: legacy user | |
icon_emoji: ':octocat:' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_LEGACY_WEBHOOK_URL_FOR_INTEGRATION_TEST }} | |
- name: Custom Field Check | |
uses: sonots/slack-notice-action@pre | |
with: | |
status: custom | |
payload: | | |
{ | |
text: "Custom Field Check", | |
attachments: [{ | |
"author_name": "sonots@slack-notice-action", // json | |
fallback: 'fallback', | |
color: 'good', | |
title: 'CI Result', | |
text: 'Succeeded', | |
fields: [{ | |
title: 'lower case', | |
value: 'LOWER CASE CHECK'.toLowerCase(), | |
short: true | |
}, | |
{ | |
title: 'reverse', | |
value: 'gnirts esrever'.split('').reverse().join(''), | |
short: true | |
}, | |
{ | |
title: 'long title1', | |
value: 'long value1', | |
short: false | |
}], | |
actions: [{ | |
}] | |
}] | |
} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL_FOR_INTEGRATION_TEST }} | |
- name: Check | |
uses: sonots/slack-notice-action@pre | |
with: | |
status: ${{ job.status }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |