Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
jdewinne committed Jun 28, 2024
1 parent ccf8d30 commit 6324746
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-archive-channel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

- name: create-release
id: create-release
uses: replicatedhq/compatibility-actions/create-release@v1
uses: replicatedhq/replicated-actions/create-release@v1
with:
api-token: ${{ secrets.REPLICATED_API_TOKEN }}
app-slug: replicated-actions-ci # from the Replicated QA team
Expand All @@ -49,7 +49,7 @@ jobs:

- name: archive-channel
if: always()
uses: replicatedhq/compatibility-actions/archive-channel@v1
uses: replicatedhq/replicated-actions/archive-channel@v1
continue-on-error: true # It could be that the channel is already removed
with:
api-token: ${{ secrets.REPLICATED_API_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-archive-customer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

- name: archive-customer
if: always()
uses: replicatedhq/compatibility-actions/archive-customer@v1
uses: replicatedhq/replicated-actions/archive-customer@v1
continue-on-error: true # It could be that the customer is already removed
with:
api-token: ${{ secrets.REPLICATED_API_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-create-cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

- name: remove cluster
if: always()
uses: replicatedhq/compatibility-actions/remove-cluster@v1
uses: replicatedhq/replicated-actions/remove-cluster@v1
continue-on-error: true # It could be that the cluster is already removed
with:
api-token: ${{ secrets.REPLICATED_API_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-create-postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- name: create-cluster
id: create-cluster
uses: replicatedhq/compatibility-actions/create-cluster@v1
uses: replicatedhq/replicated-actions/create-cluster@v1
with:
api-token: ${{ secrets.REPLICATED_API_TOKEN }}
kubernetes-distribution: eks
Expand All @@ -47,7 +47,7 @@ jobs:

- name: remove cluster
if: always()
uses: replicatedhq/compatibility-actions/remove-cluster@v1
uses: replicatedhq/replicated-actions/remove-cluster@v1
continue-on-error: true # It could be that the cluster is already removed
with:
api-token: ${{ secrets.REPLICATED_API_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-expose-port.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- name: create-cluster
id: create-cluster
uses: replicatedhq/compatibility-actions/create-cluster@v1
uses: replicatedhq/replicated-actions/create-cluster@v1
with:
api-token: ${{ secrets.REPLICATED_API_TOKEN }}
kubernetes-distribution: kind
Expand All @@ -49,7 +49,7 @@ jobs:

- name: remove cluster
if: always()
uses: replicatedhq/compatibility-actions/remove-cluster@v1
uses: replicatedhq/replicated-actions/remove-cluster@v1
continue-on-error: true # It could be that the cluster is already removed
with:
api-token: ${{ secrets.REPLICATED_API_TOKEN }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-helm-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ jobs:
- name: create-release
id: create-release
uses: replicatedhq/compatibility-actions/create-release@v1
uses: replicatedhq/replicated-actions/create-release@v1
with:
api-token: ${{ secrets.REPLICATED_API_TOKEN }}
app-slug: ${{ env.APP_SLUG }}
chart: wordpress-${{ env.WORDPRESS_CHART_VERSION }}.tgz

- name: create-customer
id: create-customer
uses: replicatedhq/compatibility-actions/create-customer@v1
uses: replicatedhq/replicated-actions/create-customer@v1
with:
api-token: ${{ secrets.REPLICATED_API_TOKEN }}
app-slug: replicated-actions-ci # from the Replicated QA team
Expand All @@ -55,7 +55,7 @@ jobs:

- name: create-cluster
id: create-cluster
uses: replicatedhq/compatibility-actions/create-cluster@v1
uses: replicatedhq/replicated-actions/create-cluster@v1
with:
api-token: ${{ secrets.REPLICATED_API_TOKEN }}
kubernetes-distribution: kind
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
- name: remove cluster
id: remove-cluster
if: always()
uses: replicatedhq/compatibility-actions/remove-cluster@v1
uses: replicatedhq/replicated-actions/remove-cluster@v1
continue-on-error: true # It could be that the cluster is already removed
with:
api-token: ${{ secrets.REPLICATED_API_TOKEN }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-kots-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ jobs:

- name: create-release
id: create-release
uses: replicatedhq/compatibility-actions/create-release@v1
uses: replicatedhq/replicated-actions/create-release@v1
with:
api-token: ${{ secrets.REPLICATED_API_TOKEN }}
app-slug: ${{ env.APP_SLUG }}
yaml-dir: ./test/kots-install/yaml

- name: create-customer
id: create-customer
uses: replicatedhq/compatibility-actions/create-customer@v1
uses: replicatedhq/replicated-actions/create-customer@v1
with:
api-token: ${{ secrets.REPLICATED_API_TOKEN }}
app-slug: replicated-actions-ci # from the Replicated QA team
Expand All @@ -51,7 +51,7 @@ jobs:

- name: create-cluster
id: create-cluster
uses: replicatedhq/compatibility-actions/create-cluster@v1
uses: replicatedhq/replicated-actions/create-cluster@v1
with:
api-token: ${{ secrets.REPLICATED_API_TOKEN }}
kubernetes-distribution: kind
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
- name: remove cluster
id: remove-cluster
if: always()
uses: replicatedhq/compatibility-actions/remove-cluster@v1
uses: replicatedhq/replicated-actions/remove-cluster@v1
continue-on-error: true # It could be that the cluster is already removed
with:
api-token: ${{ secrets.REPLICATED_API_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-prepare-cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: remove cluster
id: remove-cluster
if: always()
uses: replicatedhq/compatibility-actions/remove-cluster@v1
uses: replicatedhq/replicated-actions/remove-cluster@v1
continue-on-error: true # It could be that the cluster is already removed
with:
api-token: ${{ secrets.REPLICATED_API_TOKEN }}
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
- name: remove cluster
id: remove-cluster
if: always()
uses: replicatedhq/compatibility-actions/remove-cluster@v1
uses: replicatedhq/replicated-actions/remove-cluster@v1
continue-on-error: true # It could be that the cluster is already removed
with:
api-token: ${{ secrets.REPLICATED_API_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-remove-cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- name: create cluster
id: create-cluster
uses: replicatedhq/compatibility-actions/create-cluster@v1
uses: replicatedhq/replicated-actions/create-cluster@v1
with:
api-token: ${{ secrets.REPLICATED_API_TOKEN }}
kubernetes-distribution: kind
Expand All @@ -44,7 +44,7 @@ jobs:

- name: remove cluster
if: always()
uses: replicatedhq/compatibility-actions/remove-cluster@v1
uses: replicatedhq/replicated-actions/remove-cluster@v1
continue-on-error: true # It could be that the cluster is already removed
with:
api-token: ${{ secrets.REPLICATED_API_TOKEN }}
Expand Down

0 comments on commit 6324746

Please sign in to comment.