Skip to content

Commit

Permalink
Merge pull request #68 from sue445/act10ns-slack
Browse files Browse the repository at this point in the history
Migrate to act10ns/slack
  • Loading branch information
sue445 committed Apr 10, 2024
2 parents c40c474 + 8fc7ab3 commit 67cfc1f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 18 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/pages.yml
Expand Up @@ -51,12 +51,9 @@ jobs:
uses: actions/deploy-pages@main

- name: Slack Notification (not success)
uses: lazy-actions/slatify@master
uses: act10ns/slack@v2
if: "! success()"
continue-on-error: true
with:
job_name: "*pages*"
type: ${{ job.status }}
icon_emoji: ":octocat:"
url: ${{ secrets.SLACK_WEBHOOK }}
token: ${{ secrets.GITHUB_TOKEN }}
status: ${{ job.status }}
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
19 changes: 7 additions & 12 deletions .github/workflows/test.yml
Expand Up @@ -146,28 +146,23 @@ jobs:
continue-on-error: true

- name: Slack Notification (not success)
uses: lazy-actions/slatify@master
uses: act10ns/slack@v2
if: "! success()"
continue-on-error: true
with:
job_name: ${{ format('*build* ({0}, {1})', matrix.ruby, matrix.gemfile) }}
type: ${{ job.status }}
icon_emoji: ":octocat:"
url: ${{ secrets.SLACK_WEBHOOK }}
token: ${{ secrets.GITHUB_TOKEN }}
status: ${{ job.status }}
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
matrix: ${{ toJson(matrix) }}

notify:
needs: test
runs-on: ubuntu-latest

steps:
- name: Slack Notification (success)
uses: lazy-actions/slatify@master
uses: act10ns/slack@v2
if: always()
continue-on-error: true
with:
job_name: '*build*'
type: ${{ job.status }}
icon_emoji: ":octocat:"
url: ${{ secrets.SLACK_WEBHOOK }}
token: ${{ secrets.GITHUB_TOKEN }}
status: ${{ job.status }}
webhook-url: ${{ secrets.SLACK_WEBHOOK }}

0 comments on commit 67cfc1f

Please sign in to comment.