Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2023 Feb Release #44

Merged
merged 30 commits into from
Feb 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
7435714
Add logs
mohammadranjbarz Jan 11, 2023
1148063
Fix validating bulk notification input data
mohammadranjbarz Jan 11, 2023
508c17e
Update broadcast notification validator and improve logs
mohammadranjbarz Jan 11, 2023
6a6abd8
Modify project update added - Users who supported notificationType
mohammadranjbarz Jan 19, 2023
1472201
Fix unlisted notification for who supported project
mohammadranjbarz Jan 22, 2023
a43b1b6
Fix cancelled and listed notification for users who support the project
mohammadranjbarz Jan 22, 2023
f3ab14f
Fix activated, deactivated, verified, unverified notification for use…
mohammadranjbarz Jan 23, 2023
cc16d5d
Merge pull request #32 from Giveth/f_809_change_some_notification_typ…
mohammadranjbarz Jan 24, 2023
a3de58f
Added namespace modification for k8s CI-CD
mhmdksh Jan 24, 2023
12f3254
Merge pull request #33 from Giveth/deploy-to-k8s2
aminlatifi Jan 24, 2023
29dca23
Change some copies in notification setting page
mohammadranjbarz Jan 25, 2023
50d8cf2
Change some copies in notification setting page
mohammadranjbarz Jan 25, 2023
28235b1
Remove repetitive notification type for project update added
mohammadranjbarz Jan 30, 2023
53734b3
Add new category for supported notifications and settings
mohammadranjbarz Feb 7, 2023
3427b79
Change copies of notifications and notification types
mohammadranjbarz Feb 7, 2023
1186c3a
Change copies for givPower unlocked notification type
mohammadranjbarz Feb 7, 2023
9a34750
Merge pull request #39 from Giveth/improve_notification_type_copies
mohammadranjbarz Feb 7, 2023
1f2c6fc
add supported projects count
cquinterom096 Feb 9, 2023
e6609b6
Fix project unlisted for owner content
mohammadranjbarz Feb 12, 2023
6f02599
Merge branch 'staging' of github.com:Giveth/notification-center into …
mohammadranjbarz Feb 12, 2023
714d67b
Change copies of deactivated and activated projects
mohammadranjbarz Feb 12, 2023
04c96b4
Relate status change notificationTypes to appropriate settings for su…
mohammadranjbarz Feb 12, 2023
e5667e0
Add Project boosted by project owner notificationType
mohammadranjbarz Feb 19, 2023
e028f6f
Change copies for project edited notification
mohammadranjbarz Feb 19, 2023
14f8bc0
Add dot in the end of content of notification types
mohammadranjbarz Feb 19, 2023
37c8b34
Change project deactivated content
mohammadranjbarz Feb 19, 2023
a4c108e
Change default value of some notification types
mohammadranjbarz Feb 20, 2023
6d95c7b
Change default value of some notification types
mohammadranjbarz Feb 20, 2023
7113427
Undo change default value of some notification types
mohammadranjbarz Feb 20, 2023
a1adf33
Resolve merge conflicts
mohammadranjbarz Feb 20, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/CI-CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,26 @@ jobs:
username: ${{ secrets.STAGING_USERNAME }}
privateKey: ${{ secrets.STAGING_PRIVATE_KEY}}

deploy-k8s:
if: github.ref == 'refs/heads/main'|| github.ref == 'refs/heads/staging'
needs: publish
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@master
- name: Deploy to Staging Cluster
if: github.ref == 'refs/heads/staging'
uses: steebchen/[email protected]
with: # defaults to latest kubectl binary version
config: ${{ secrets.KUBE_CONFIG }}
command: rollout restart deployments/notification-center -n backend
- name: Verify Staging Deployment
if: github.ref == 'refs/heads/staging'
uses: steebchen/[email protected]
with:
config: ${{ secrets.KUBE_CONFIG }}
version: v1.24.2 # specify kubectl binary version explicitly
command: rollout status deployments/notification-center -n backend
- name: Production deploy
if: github.ref == 'refs/heads/main'
uses: garygrossgarten/[email protected]
Expand Down
Loading