Artifact caching proxy repo.do.jenkins.io is not answering requests from bom build #1929
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: Issues Similarity Analysis | |
on: | |
issues: | |
types: [opened, edited] | |
jobs: | |
similarity-analysis: | |
runs-on: ubuntu-latest | |
if: github.event.issue.state == 'open' | |
steps: | |
- name: analysis | |
uses: actions-cool/issues-similarity-analysis@8f46978e3e8b79d736997a225c95d27d9029f294 # v1 | |
with: | |
filter-threshold: 0.7 | |
title-excludes: 'bug, jenkins' | |
comment-title: "### Take a look at these similar issues to see if there isn't already a response to your problem:" | |
comment-body: '${index}. ${similarity} #${number}' | |
show-footer: false | |
since-days: 730 |