Skip to content

Commit 88509ea

Browse files
Merge branch 'main' into PIDM-1487-fix-empty-cbill
2 parents 1a1ec11 + a0cda93 commit 88509ea

File tree

18 files changed

+45
-40
lines changed

18 files changed

+45
-40
lines changed

.github/workflows/create_dashboard.yaml

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@ name: Create Dashboard
22

33
# Controls when the workflow will run
44
on:
5+
push:
6+
branches:
7+
- main
8+
paths:
9+
- 'openapi/**'
10+
- '.github/workflows/create_dashboard.yaml'
11+
- '.opex/**'
12+
513
workflow_dispatch:
614

715
permissions:
@@ -14,6 +22,12 @@ jobs:
1422
dashboard:
1523
# The type of runner that the job will run on
1624
runs-on: ubuntu-22.04
25+
26+
strategy:
27+
matrix:
28+
environment: [prod]
29+
environment:
30+
name: ${{ matrix.environment }}
1731
# Steps represent a sequence of tasks that will be executed as part of the job
1832
steps:
1933
- name: Checkout
@@ -26,12 +40,12 @@ jobs:
2640
# from https://github.com/pagopa/opex-dashboard-azure-action/
2741
- uses: pagopa/opex-dashboard-azure-action@ece3bc2b133be74cabb50aec14cdb9b8051b886f # v1.1.2
2842
with:
29-
environment: prod
43+
environment: ${{ matrix.environment }}
3044
api-name:
31-
config: .opex/env/prod/config.yaml
32-
client-id: ${{ secrets.PROD_CLIENT_ID }}
33-
tenant-id: ${{ secrets.PROD_TENANT_ID }}
34-
subscription-id: ${{ secrets.PROD_SUBSCRIPTION_ID }}
45+
config: .opex/env/${{ matrix.environment }}/config.yaml
46+
client-id: ${{ secrets.CLIENT_ID }}
47+
tenant-id: ${{ secrets.TENANT_ID }}
48+
subscription-id: ${{ secrets.SUBSCRIPTION_ID }}
3549
# from https://github.com/pagopa/opex-dashboard-azure-action/pkgs/container/opex-dashboard-azure-action
3650
docker-version: sha256:e4245954566cd3470e1b5527d33bb58ca132ce7493eac01be9e808fd25a11c8d
3751

.opex/backoffice/env/uat/backend.ini

Lines changed: 0 additions & 1 deletion
This file was deleted.

.opex/backoffice/env/uat/backend.tfvars

Lines changed: 0 additions & 4 deletions
This file was deleted.

.opex/backoffice/env/uat/config.yaml

Lines changed: 0 additions & 12 deletions
This file was deleted.

.opex/backoffice/env/uat/terraform.tfvars

Lines changed: 0 additions & 11 deletions
This file was deleted.
File renamed without changes.

helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: pagopa-selfcare-ms-backoffice
33
description: Microservice that manage api keys for pagopa product from selfcare
44
type: application
5-
version: 0.510.0
6-
appVersion: "2.43.0"
5+
version: 0.511.0
6+
appVersion: "2.43.1"
77
dependencies:
88
- name: microservice-chart
99
version: 7.5.0

0 commit comments

Comments
 (0)