Skip to content

Commit 9c64195

Browse files
Sunny  TyagiSunny  Tyagi
authored andcommitted
docs(pkg): rename the package
rename the package gh-3
1 parent a2d1b90 commit 9c64195

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# loopback4-message-bus-queue-connector
1+
# loopback4-message-queue-connector
22

33
## Contributing
44

55
First off, thank you for considering contributing to the project. It's people like you that helps in keeping this extension useful.
66

77
### Where do I go from here?
88

9-
If you've noticed a bug or have a question, [search the issue tracker](https://github.com/sourcefuse/loopback4-message-bus-queue-connector/issues) to see if
9+
If you've noticed a bug or have a question, [search the issue tracker](https://github.com/sourcefuse/loopback4-message-queue-connector/issues) to see if
1010
someone else in the community has already created a ticket. If not, go ahead and
11-
[make one](https://github.com/sourcefuse/loopback4-message-bus-queue-connector/issues/new/choose)!
11+
[make one](https://github.com/sourcefuse/loopback4-message-queue-connector/issues/new/choose)!
1212

1313
### Fork & create a branch
1414

@@ -24,10 +24,10 @@ git checkout -b 325-add-new-feature
2424
### Make a Pull Request
2525

2626
At this point, you should switch back to your master branch and make sure it's
27-
up to date with loopback4-message-bus-queue-connector's master branch:
27+
up to date with loopback4-message-queue-connector's master branch:
2828

2929
```sh
30-
git remote add upstream git@github.com:sourcefuse/loopback4-message-bus-queue-connector.git
30+
git remote add upstream git@github.com:sourcefuse/loopback4-message-queue-connector.git
3131
git checkout master
3232
git pull upstream master
3333
```

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: |
2323
git config --global user.name $CONFIG_USERNAME
2424
git config --global user.email $CONFIG_EMAIL
25-
git remote set-url origin https://$GITHUB_ACTOR:$GITHUB_PAT@github.com/sourcefuse/loopback4-message-bus-queue-connector
25+
git remote set-url origin https://$GITHUB_ACTOR:$GITHUB_PAT@github.com/sourcefuse/loopback4-message-queue-connector
2626
env:
2727
GITHUB_PAT: ${{ secrets.RELEASE_COMMIT_GH_PAT }}
2828
CONFIG_USERNAME: ${{ vars.RELEASE_COMMIT_USERNAME }}

src/release_notes/mymarkdown.ejs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
## Release [<%= range.split('..')[1] %>](https://github.com/sourcefuse/loopback4-message-bus-queue-connector/compare/<%= range %>) <%= new Date().toLocaleDateString('en-us', {year:"numeric", month:"long", day:"numeric"})
1+
## Release [<%= range.split('..')[1] %>](https://github.com/sourcefuse/loopback4-message-queue-connector/compare/<%= range %>) <%= new Date().toLocaleDateString('en-us', {year:"numeric", month:"long", day:"numeric"})
22
;%>
3-
Welcome to the <%= new Date().toLocaleDateString('en-us', {year:"numeric", month:"long", day:"numeric"});%> release of loopback4-message-bus-queue-connector. There are many updates in this version that we hope you will like, the key highlights include:
3+
Welcome to the <%= new Date().toLocaleDateString('en-us', {year:"numeric", month:"long", day:"numeric"});%> release of loopback4-message-queue-connector. There are many updates in this version that we hope you will like, the key highlights include:
44
<% commits.forEach(function (commit) { %>
5-
- [<%= commit.issueTitle %>](https://github.com/sourcefuse/loopback4-message-bus-queue-connector/issues/<%= commit.issueno %>) :- [<%= commit.title %>](https://github.com/sourcefuse/loopback4-message-bus-queue-connector/commit/<%= commit.sha1%>) was commited on <%= commit.committerDate %> by [<%= commit.authorName %>](mailto:<%= commit.authorEmail %>)
5+
- [<%= commit.issueTitle %>](https://github.com/sourcefuse/loopback4-message-queue-connector/issues/<%= commit.issueno %>) :- [<%= commit.title %>](https://github.com/sourcefuse/loopback4-message-queue-connector/commit/<%= commit.sha1%>) was commited on <%= commit.committerDate %> by [<%= commit.authorName %>](mailto:<%= commit.authorEmail %>)
66
<% commit.messageLines.forEach(function (message) { %>
77
- <%= message %>
88
<% }) %>

src/release_notes/post-processing.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function getIssueDesc(issueNo) {
4545
return new Promise((resolve, reject) => {
4646
let result = '';
4747
const req = https.get(
48-
`https://github.com/sourcefuse/loopback4-message-bus-queue-connector/issues/${encodeURIComponent(
48+
`https://github.com/sourcefuse/loopback4-message-queue-connector/issues/${encodeURIComponent(
4949
issueNo,
5050
)}`,
5151
res => {

0 commit comments

Comments
 (0)