Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit 15aafc7

Browse files
authored
CI: fix docs parity updates (#1799)
1 parent 2424208 commit 15aafc7

File tree

2 files changed

+18
-6
lines changed

2 files changed

+18
-6
lines changed

.github/bot_templates/PARITY_COVERAGE_DOCS_PR.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 📖 Parity Metrics Docs Update Report 📖
22
This PR has been automatically generated to update the AWS parity coverage docs.
3-
It aggregates the latest parity coverage test results from our [test pipeline on CircleCI](https://app.circleci.com/pipelines/github/localstack/localstack/) as well as from our Pro integration tests.
3+
It aggregates the latest parity coverage test results from our [test pipeline on GitHub](https://github.com/localstack/localstack/actions/workflows/aws-main.yml?query=branch%3Amaster) as well as from our Pro integration tests.
44

55
## 👷🏽 Handle this PR
66
The following options describe how to interact with this PR / the auto-update:

.github/workflows/docs-parity-updates.yml

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ jobs:
3838
- name: Download scripts from meta repository
3939
run: |
4040
curl -o /tmp/get_latest_github_metrics.sh -L https://raw.githubusercontent.com/localstack/meta/main/scripts/get_latest_github_metrics.sh -H 'Accept: application/vnd.github.v3.raw'
41-
curl -o /tmp/get_latest_circleci_metrics.sh -L https://raw.githubusercontent.com/localstack/meta/main/scripts/get_latest_circleci_metrics.sh -H 'Accept: application/vnd.github.v3.raw'
42-
chmod +x /tmp/get_latest_github_metrics.sh /tmp/get_latest_circleci_metrics.sh
41+
chmod +x /tmp/get_latest_github_metrics.sh
4342
4443
- name: Download metrics data from Moto Integration test pipeline (GitHub)
4544
working-directory: docs
@@ -82,12 +81,25 @@ jobs:
8281
WORKFLOW: "AWS / Build, Test, Push"
8382
RESOURCE_FOLDER: "metrics-implementation-details"
8483

85-
- name: Download metrics data from latest Community test run (CircleCI)
84+
- name: Download metrics data from Community pipeline (GitHub)
8685
working-directory: docs
86+
run: /tmp/get_latest_github_metrics.sh ./target master
8787
env:
88-
CIRCLE_CI_TOKEN: ${{ secrets.CIRCLE_CI_TOKEN }}
89-
run: /tmp/get_latest_circleci_metrics.sh ./target
88+
GITHUB_TOKEN: ${{ secrets.PRO_ACCESS_TOKEN }}
89+
REPOSITORY_NAME: localstack
90+
ARTIFACT_ID: parity-metric-raw-amd*
91+
WORKFLOW: "AWS / Build, Test, Push"
92+
PREFIX_ARTIFACT: community-integration-test
9093

94+
- name: Download coverage (capture-notimplemented) data from Community pipeline (GitHub)
95+
working-directory: docs
96+
run: /tmp/get_latest_github_metrics.sh ./target master
97+
env:
98+
GITHUB_TOKEN: ${{ secrets.PRO_ACCESS_TOKEN }}
99+
REPOSITORY_NAME: localstack
100+
ARTIFACT_ID: capture-notimplemented
101+
WORKFLOW: "AWS / Build, Test, Push"
102+
RESOURCE_FOLDER: "metrics-implementation-details/community"
91103

92104
- name: Create Parity Coverage Docs
93105
working-directory: docs

0 commit comments

Comments
 (0)