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

Merge release uat #394

Merged
merged 37 commits into from
Mar 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
3a2d689
[SELC-4456] feat: added endpoint to update user invoking user-ms
pierpaolodidato89 Mar 14, 2024
cf37756
fix swagger docs
manuraf Mar 15, 2024
b1453a5
apim dashboard
manuraf Mar 15, 2024
b4f1736
add HEAD
manuraf Mar 15, 2024
44248f0
fix localhost http
manuraf Mar 15, 2024
d8658c5
fix url and dns
manuraf Mar 15, 2024
41afe16
apim pnpg
manuraf Mar 15, 2024
305acb8
Merge branch 'main' into release-dev
manuraf Mar 15, 2024
2fc28a8
added imprese to base path
manuraf Mar 15, 2024
1433893
fix SwaggerConfigTest
manuraf Mar 15, 2024
93782af
Merge branch 'feature/SELC-4510-apim-group' into release-dev
manuraf Mar 15, 2024
4da91f1
chore: deployment k8s replica 0 dev (#375)
manuraf Mar 18, 2024
02d2f85
chore: fix api_dns_zone_prefix
manuraf Mar 19, 2024
12a4cb4
[SELC-4532] Fix: Refactor API to retrieve list of user's institution …
flaminiaScarciofolo Mar 19, 2024
6eafa1d
[SELC-4456] fix: updated permission on update user API
pierpaolodidato89 Mar 19, 2024
5823e7d
[SELC-4202] Feat: Added Api V2 for retrieve UserDetail (#377)
flaminiaScarciofolo Mar 19, 2024
6e4f156
[SELC-4534] feat: added request mapping users v2 to UserV2Controller …
pierpaolodidato89 Mar 20, 2024
b80ef2c
SELC-4458] fix: Added v2 for userGroupService (#378)
empassaro Mar 20, 2024
15c70f2
[SELC-4497] Feat: Added API to retrieve userList (#380)
flaminiaScarciofolo Mar 20, 2024
aefa416
Merge release-dev
manuraf Mar 20, 2024
799b581
chore: fix private dns url for uat-pnpg and prod-pnpg
manuraf Mar 20, 2024
77b9008
chore: fix pnpg suffix private_dns_name
manuraf Mar 20, 2024
ed24f30
chore: set external domain on infra pnpg for uat and prod
manuraf Mar 20, 2024
e35bb09
[SELC-4535] feat: added endpoint for zendesk integraton to fix error …
pierpaolodidato89 Mar 21, 2024
c63236c
chore: added allow-credentials=true
manuraf Mar 21, 2024
27676bb
chore: deployment k8s replica 0 uat
manuraf Mar 22, 2024
de6570a
[SELC-4488] Feat: Added V2 for usergroup API (#384)
flaminiaScarciofolo Mar 22, 2024
68656b2
chore: create release pipeline and promote release
manuraf Mar 22, 2024
0070e13
[SELC-4588] Fix: refactor userRole value according to ADMIN and LIMIT…
flaminiaScarciofolo Mar 25, 2024
7680e97
chore: fix JWT_ISSUER value for pnpg
manuraf Mar 25, 2024
26e33e7
Merge branch 'main' into release-uat
manuraf Mar 25, 2024
00201c4
[SELC-4484] feat: Added variable to switch check authorities to v2
pierpaolodidato89 Mar 26, 2024
7b2e200
[SELC-4589] feat: Added API v2 for retrieve institution By institutio…
empassaro Mar 26, 2024
b5085db
chore: set B4F_DASHBOARD_SECURITY_CONNECTOR v1
manuraf Mar 26, 2024
3a48048
[SELC-4483] Feat: Added createUser and AddUserRole v2 API (#385)
flaminiaScarciofolo Mar 27, 2024
972542b
[SELC-4541] feat: add institutionId and fields param to getUserById a…
KevinSi96 Mar 27, 2024
1c1ae9a
[SELC-4590] feat: Added V2 API for tokenExchange and billing tokenExc…
empassaro Mar 28, 2024
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
44 changes: 44 additions & 0 deletions .github/workflows/create_release_branch.yml
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 }}

10 changes: 10 additions & 0 deletions .github/workflows/release_ms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,13 @@ jobs:
environment: prod
tf_environment: prod
dir: 'infra/container_apps'

promote_release:
name: 'Promote prerelase release'
runs-on: ubuntu-20.04
needs: [release_prod]
steps:
- uses: pagopa/selfcare-commons/github-actions-template/promote-release@main
with:
github_path_token: ${{ secrets.GH_PAT_VARIABLES }}
release_version: ${{ vars.CURRENT_UAT_VERSION }}
Loading