-
Notifications
You must be signed in to change notification settings - Fork 8
53 lines (51 loc) · 1.87 KB
/
sync_charmstore_credentials.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: Sync Charmstore Credentials
on:
workflow_dispatch:
inputs:
DRY_RUN:
description: 'true/false whether to run action in dry-run mode'
required: true
default: 'true'
jobs:
sync_charmstore_credentials:
runs-on: ubuntu-latest
steps:
- uses: google/[email protected]
with:
SECRETS: |
^CHARMCRAFT_CREDENTIALS$
REPOSITORIES: |
^canonical/admission-webhook-operator$
^canonical/argo-operators$
^canonical/bundle-cert-manager$
^canonical/bundle-kubeflow$
^canonical/dex-auth-operator$
^canonical/envoy-operator$
^canonical/istio-operators$
^canonical/katib-operators$
^canonical/kfp-operators$
^canonical/knative-operators$
^canonical/kserve-operators$
^canonical/kubeflow-dashboard-operator$
^canonical/kubeflow-profiles-operator$
^canonical/kubeflow-roles-operator
^canonical/kubeflow-tensorboards-operator$
^canonical/kubeflow-volumes-operator$
^canonical/minio-operator$
^canonical/mlflow-operator$
^canonical/mlmd-operator$
^canonical/metacontroller-operator$
^canonical/ngc-integrator-operator$
^canonical/notebook-operators$
^canonical/oidc-gatekeeper-operator$
^canonical/pvcviewer-operator$
^canonical/pytorch-operator$
^canonical/resource-dispatcher$
^canonical/training-operator$
^canonical/seldon-core-operator$
^canonical/tfjob-operator$
DRY_RUN: ${{ github.event.inputs.DRY_RUN }}
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}
CONCURRENCY: 10
env:
CHARMCRAFT_CREDENTIALS: ${{ secrets.CHARMCRAFT_CREDENTIALS }}