Socket
Socket
Sign inDemoInstall

@semantic-release/github

Package Overview
Dependencies
Maintainers
4
Versions
169
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@semantic-release/github - npm Package Compare versions

Comparing version 4.1.2 to 4.1.3

2

lib/find-sr-issues.js

@@ -5,3 +5,3 @@ const ISSUE_ID = require('./definitions/sr-issue-id');

const {data: {items: issues}} = await github.search.issues({
q: `title:${title}+repo:${owner}/${repo}+type:issue+state:open`,
q: `in:title+repo:${owner}/${repo}+type:issue+state:open+${title}`,
});

@@ -8,0 +8,0 @@

@@ -19,6 +19,5 @@ const {isUndefined, castArray} = require('lodash');

failComment,
failTitle:
isUndefined(failTitle) || failTitle === false ? 'The automated release is failing :rotating_light:' : failTitle,
failTitle: isUndefined(failTitle) || failTitle === false ? 'The automated release is failing 🚨' : failTitle,
labels: isUndefined(labels) ? ['semantic-release'] : labels === false ? [] : castArray(labels),
assignees: assignees ? castArray(assignees) : assignees,
});
{
"name": "@semantic-release/github",
"description": "Set of semantic-release plugins for publishing a GitHub release",
"version": "4.1.2",
"version": "4.1.3",
"author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",

@@ -6,0 +6,0 @@ "bugs": {

@@ -56,3 +56,3 @@ # @semantic-release/github

| `failComment` | The content of the issue created when a release fails. See [failComment](#failcomment). | Friendly message with links to **semantic-release** documentation and support, with the list of errors that caused the release to fail. |
| `failTitle` | The title of the issue created when a release fails. | `The automated release is failing :rotating_light:` |
| `failTitle` | The title of the issue created when a release fails. | `The automated release is failing 🚨` |
| `labels` | The [labels](https://help.github.com/articles/about-labels) to add to the issue created when a release fails. | `['semantic-release']` |

@@ -59,0 +59,0 @@ | `assignees` | The [assignees](https://help.github.com/articles/assigning-issues-and-pull-requests-to-other-github-users) to add to the issue created when a release fails. | - |

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc