Skip to content

Commit c7e44a3

Browse files
committed
autogen: build bundles
1 parent 70a16f9 commit c7e44a3

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

distAction/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -26100,7 +26100,9 @@ exports.issueTitle = (upstreamReference) => `upstream reference closed: ${upstre
2610026100
exports.issueBody = (upstreamReference, type, thisOwner, thisRepo, foundIn) => `The upstream [${type}](https://${upstreamReference}) got closed. It is referenced in:
2610126101
- [ ] ${foundIn
2610226102
.map(([file, line]) => `[${file}#L${line}](https://github.com/${thisOwner}/${thisRepo}/blob/master/${file}#L${line})`)
26103-
.join('\n- [ ] ')}`;
26103+
.join('\n- [ ] ')}
26104+
26105+
This issue was created by the [ORY Closed Reference Notifier](https://github.com/ory/closed-reference-notifier) GitHub action.`;
2610426106
exports.createIssue = (params) => getClient()
2610526107
.issues.create(params)
2610626108
.then(() => Promise.resolve());

distCli/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -26112,7 +26112,9 @@ exports.issueBody = (upstreamReference, type, thisOwner, thisRepo, foundIn) => `
2611226112
- [ ] ${foundIn
2611326113
.map(([file, line]) => `[${file}#L${line}](https://github.com/${thisOwner}/${thisRepo}/blob/master/${file}#L${line})`)
2611426114
.join('
26115-
- [ ] ')}`;
26115+
- [ ] ')}
26116+
26117+
This issue was created by the [ORY Closed Reference Notifier](https://github.com/ory/closed-reference-notifier) GitHub action.`;
2611626118
exports.createIssue = (params) => getClient()
2611726119
.issues.create(params)
2611826120
.then(() => Promise.resolve());

0 commit comments

Comments
 (0)