build(deps): bump torch from 1.7.1 to 2.2.0 in /server #3
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: Mention Notifier | |
on: | |
issues: | |
types: [opened, edited] | |
issue_comment: | |
types: [created, edited] | |
pull_request: | |
types: [opened, edited, review_requested] | |
pull_request_review: | |
types: [submitted] | |
pull_request_review_comment: | |
types: [created, edited] | |
jobs: | |
mention-to-slack: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Mention Notify | |
uses: abeyuya/[email protected] | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
slack-webhook-url: ${{ secrets.SLACK_WEBHOOK_URL_MENTION }} | |
icon-url: https://img.icons8.com/color/256/000000/github-2.png | |
bot-name: "GitHub Mention알리미" | |
run-id: ${{ github.run_id }} | |
- name: Slack-Notification | |
uses: 8398a7/action-slack@v3 | |
with: | |
status: ${{job.status}} | |
fields: repo,message,commit,author,action,eventName,ref,workflow | |
author_name: GitHub Mension Sync | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # required | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} # required | |
if: failure() |