This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: fix pnpg suffix private_dns_name * fix: Adding api for count users for each product * fix: [SELC-4536] fix deleteDelegations query findByToAndStatus (#449) * chore: deployment k8s replica 0 uat * fix: Adding api for count users for each product * fix: Adding return value api * fix: Adding return value api * chore: create release pipeline and promote release * chore: fix STORAGE_CREDENTIAL_ID value --------- Co-authored-by: manuraf <[email protected]> Co-authored-by: Giulia Tremolada <[email protected]>
- Loading branch information
1 parent
ceaae9a
commit cc5a7d1
Showing
25 changed files
with
317 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Create Release branch | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version-bump: | ||
required: false | ||
type: choice | ||
options: | ||
- major | ||
- minor | ||
- patch | ||
default: patch | ||
description: 'Major, Minor, or Patch version bump' | ||
|
||
jobs: | ||
create_branch: | ||
name: 'Create Release Branch' | ||
runs-on: ubuntu-20.04 | ||
permissions: | ||
contents: write | ||
actions: write | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
steps: | ||
|
||
- name: Create Release Branch | ||
id: create_branch | ||
uses: pagopa/selfcare-commons/github-actions-template/create-release@main | ||
with: | ||
version_bump: ${{ inputs.version-bump }} | ||
github_path_token: ${{ secrets.GH_PAT_VARIABLES }} | ||
|
||
- name: Trigger release ms UAT Release | ||
run: | | ||
gh workflow run release_ms.yml \ | ||
--ref ${{ steps.create_branch.outputs.new_branch_name }} | ||
- name: Trigger PNPG release ms UAT Release | ||
run: | | ||
gh workflow run release_ms_pnpg.yml \ | ||
--ref ${{ steps.create_branch.outputs.new_branch_name }} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
connector-api/src/main/java/it/pagopa/selfcare/mscore/model/aggregation/QueryCount.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package it.pagopa.selfcare.mscore.model.aggregation; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
import lombok.experimental.FieldNameConstants; | ||
|
||
@Data | ||
@FieldNameConstants(asEnum = true) | ||
@AllArgsConstructor | ||
@NoArgsConstructor | ||
public class QueryCount { | ||
private String _id; | ||
private Integer count; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.