Skip to content

Commit eea13b1

Browse files
authored
Merge pull request #4 from Tyagi-Sunny/gh-3
feat(connector): refactor the implementation and add event bridge startegy
2 parents 02bf3e5 + 4d6953e commit eea13b1

File tree

113 files changed

+3114
-1107
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+3114
-1107
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-bus-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-bus-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-bus-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-bus-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-bus-connector.git
3131
git checkout master
3232
git pull upstream master
3333
```

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ about: Create a report to help us improve
44
title: ''
55
labels: ''
66
assignees: ''
7-
87
---
98

109
**Describe the bug**
1110
A clear and concise description of what the bug is.
1211

1312
**To Reproduce**
1413
Steps to reproduce the behavior:
14+
1515
1. Go to '...'
1616
2. Click on '....'
1717
3. Scroll down to '....'

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ about: Suggest an idea for this project
44
title: ''
55
labels: ''
66
assignees: ''
7-
87
---
98

109
**Is your feature request related to a problem? Please describe.**

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
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-bus-connector
2626
env:
2727
GITHUB_PAT: ${{ secrets.RELEASE_COMMIT_GH_PAT }}
2828
CONFIG_USERNAME: ${{ vars.RELEASE_COMMIT_USERNAME }}
@@ -49,4 +49,4 @@ jobs:
4949
GH_TOKEN: ${{ secrets.RELEASE_COMMIT_GH_PAT }}
5050
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
5151
- name: Changelog 📝
52-
run: cd src/release_notes && HUSKY=0 node release-notes.js
52+
run: cd src/release_notes && HUSKY=0 node release-notes.js

0 commit comments

Comments
 (0)