screwdriver-api 7.0.101 → 7.0.103

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,21 @@
1
+ name: Issue Workflow
2
+
3
+ on:
4
+ issues:
5
+ types:
6
+ - labeled
7
+ - opened
8
+
9
+ jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+
13
+ steps:
14
+ - name: Run similarity analysis
15
+ if: (github.event.action == 'labeled' && contains(github.event.issue.labels.*.name, 'triage')) || (github.event.action == 'opened')
16
+ uses: actions-cool/issues-similarity-analysis@main
17
+ with:
18
+ filter-threshold: 0.3
19
+ title-excludes: 'bug, not, 1234'
20
+ comment-title: '### Similar issues'
21
+ comment-body: '${index}. ${similarity} #${number}'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "screwdriver-api",
3
- "version": "7.0.101",
3
+ "version": "7.0.103",
4
4
  "description": "API server for the Screwdriver.cd service",
5
5
  "main": "index.js",
6
6
  "scripts": {