mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-07 17:44:35 +08:00
commit
6607417313
12
.github/workflows/chain-alert.yml
vendored
12
.github/workflows/chain-alert.yml
vendored
@ -1,12 +0,0 @@
|
||||
name: ChainAlert
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
push:
|
||||
branches: [ master ]
|
||||
jobs:
|
||||
chainalert:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: checkmarx/chainalert-github-action@v1
|
9
.github/workflows/issue-open-check.yml
vendored
9
.github/workflows/issue-open-check.yml
vendored
@ -77,3 +77,12 @@ jobs:
|
||||
issue-number: ${{ github.event.issue.number }}
|
||||
body: |
|
||||
Hello @${{ github.event.issue.user.login }}, v4 only support IE11 and above.
|
||||
|
||||
- name: send to dingtalk
|
||||
uses: visiky/dingtalk-release-notify@main
|
||||
with:
|
||||
DING_TALK_TOKEN: ${{ secrets.DINGDING_BOT_TOKEN }}
|
||||
notify_title: '🔥 @${{ github.event.issue.user.login }} 创建了 issue:${{ github.event.issue.title }}'
|
||||
notify_body: '### 🔥 @${{ github.event.issue.user.login }} 创建了 issue:[${{ github.event.issue.title }}](${{ github.event.issue.html_url }}) <hr /> ${{ github.event.issue.body }}'
|
||||
notify_footer: '> 💬 欢迎前往 GitHub 进行讨论,社区可能需要你的帮助。'
|
||||
at_all: false # whether to ding everybody
|
||||
|
17
.github/workflows/issues-similarity-analysis.yml
vendored
Normal file
17
.github/workflows/issues-similarity-analysis.yml
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
name: Issues Similarity Analysis
|
||||
|
||||
on:
|
||||
issues:
|
||||
types: [opened, edited]
|
||||
|
||||
jobs:
|
||||
similarity-analysis:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: analysis
|
||||
uses: actions-cool/issues-similarity-analysis@v1.0.0
|
||||
with:
|
||||
filter-threshold: 0.5
|
||||
title-excludes: ''
|
||||
comment-title: '### You may look for issues:'
|
||||
comment-body: '${index}. ${similarity} #${number}'
|
33
.github/workflows/suggest-related-links.yml
vendored
33
.github/workflows/suggest-related-links.yml
vendored
@ -1,33 +0,0 @@
|
||||
name: 'Suggest Related Links'
|
||||
|
||||
on:
|
||||
issues:
|
||||
types:
|
||||
- opened
|
||||
- edited
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: '13 13 * * */7'
|
||||
|
||||
jobs:
|
||||
suggest-related-links:
|
||||
runs-on: ubuntu-18.04
|
||||
steps:
|
||||
- name: Cache dependencies
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ~/actions-suggest-related-links-tmp
|
||||
key: ${{ runner.os }}-action-${{ hashFiles('~/actions-suggest-related-links-tmp/training-data.json') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-action-
|
||||
|
||||
- uses: peaceiris/actions-suggest-related-links@v1
|
||||
- uses: peaceiris/actions-suggest-related-links/models/fasttext@v1
|
||||
if: github.event_name == 'issues'
|
||||
with:
|
||||
version: v1
|
||||
- uses: peaceiris/actions-suggest-related-links@v1
|
||||
with:
|
||||
mode: 'suggest'
|
||||
repository: 'peaceiris/actions-gh-pages'
|
||||
unclickable: true
|
Loading…
Reference in New Issue
Block a user