github-actions[bot]
3 years ago
committed by
GitHub
4 changed files with 26 additions and 45 deletions
@ -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 |
@ -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}' |
@ -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