Skip to content

Commit d30e7f5

Browse files
committed
Merge branch 'main' of github.com:redhat-developer/rhdh-plugin-export-overlays into addmcpbackendplugin
2 parents 27344d9 + 20088ac commit d30e7f5

File tree

77 files changed

+222
-79
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+222
-79
lines changed

.github/CODEOWNERS

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
* @redhat-developer/rhdh-cope @gashcrumb @kadel
1818

19-
/workspaces/3scale @04kash @AndrienkoAleksandr
19+
/workspaces/3scale @redhat-developer/rhdh-plugins @AndrienkoAleksandr
2020
/workspaces/acr @redhat-developer/rhdh-ui
2121
# /workspaces/acs
2222
/workspaces/adoption-insights @redhat-developer/rhdh-ui @rohitkrai03 @karthikjeeyar @eswaraiahsapram
@@ -40,11 +40,11 @@
4040
/workspaces/homepage @redhat-developer/rhdh-ui @eswaraiahsapram
4141
# /workspaces/jenkins
4242
/workspaces/jfrog-artifactory @redhat-developer/rhdh-ui @its-mitesh-kumar @BethGriggs
43-
/workspaces/keycloak @AndrienkoAleksandr @schultzp2020 @dzemanov
43+
/workspaces/keycloak @redhat-developer/rhdh-plugins @AndrienkoAleksandr @dzemanov
4444
# /workspaces/kiali
4545
# /workspaces/lighthouse
4646
/workspaces/lightspeed @redhat-developer/rhdh-ui @karthikjeeyar @rohitkrai03 @yangcao77
47-
/workspaces/marketplace @redhat-developer/rhdh-ui
47+
/workspaces/marketplace @redhat-developer/rhdh-ui @redhat-developer/rhdh-plugins
4848
/workspaces/nexus-repository-manager @redhat-developer/rhdh-ui @debsmita1 @ciiay @jessicajhee
4949
/workspaces/npm @redhat-developer/rhdh-ui @christoph-jerolimov
5050
/workspaces/ocm @redhat-developer/rhdh-plugins @redhat-developer/rhdh-ui
@@ -53,21 +53,23 @@
5353
/workspaces/orchestrator @batzionb @mareklibra @gciavarrini
5454
# /workspaces/pagerduty-backend
5555
# /workspaces/pagerduty-frontend
56-
/workspaces/pingidentity @jessicajhee
56+
/workspaces/pingidentity @redhat-developer/rhdh-plugins @jessicajhee
5757
/workspaces/quay @caugello @cryptorodeo
58+
/workspaces/quay/plugins/quay-actions @redhat-developer/rhdh-plugins
5859
/workspaces/quickstart @redhat-developer/rhdh-ui @divyanshiGupta @its-mitesh-kumar
5960
/workspaces/rbac @redhat-developer/rhdh-plugins @PatAKnight @dzemanov @AndrienkoAleksandr @redhat-developer/rhdh-ui @divyanshiGupta @its-mitesh-kumar
6061
/workspaces/redhat-argocd @caugello @cryptorodeo
6162
# /workspaces/roadie-backstage-plugins
6263
/workspaces/sandbox @lucifergene @rohitkrai03 @karthikjeeyar @xcoulon @alexeykazakov @mfrancisc
63-
/workspaces/scaffolder-backend-module-annotator @debsmita1
64+
/workspaces/scaffolder-backend-module-annotator @redhat-developer/rhdh-plugins
6465
# /workspaces/scaffolder-backend-module-azure-repositories
65-
/workspaces/scaffolder-backend-module-kubernetes @debsmita1
66-
/workspaces/scaffolder-backend-module-regex @04kash
67-
/workspaces/scaffolder-backend-module-servicenow @schultzp2020
68-
/workspaces/scaffolder-backend-module-sonarqube @04kash @schultzp2020
69-
/workspaces/scaffolder-relation-processor @04kash
66+
/workspaces/scaffolder-backend-module-kubernetes @redhat-developer/rhdh-plugins
67+
/workspaces/scaffolder-backend-module-regex @redhat-developer/rhdh-plugins
68+
/workspaces/scaffolder-backend-module-servicenow @redhat-developer/rhdh-plugins @AndrienkoAleksandr
69+
/workspaces/scaffolder-backend-module-sonarqube @redhat-developer/rhdh-plugins
70+
/workspaces/scaffolder-relation-processor @redhat-developer/rhdh-plugins
7071
/workspaces/servicenow @redhat-developer/rhdh-plugins @AndrienkoAleksandr @redhat-developer/rhdh-ui @ciiay
72+
/workspaces/scorecard @redhat-developer/rhdh-plugins @redhat-developer/rhdh-ui @dzemanov @eswaraiahsapram @imykhno
7173
# /workspaces/sonarqube
7274
# /workspaces/tech-insights
7375
# /workspaces/tech-radar

.github/workflows/check-backstage-compatibility.yaml

Lines changed: 24 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
needs:
6565
- check
6666
runs-on: ubuntu-latest
67-
if: always()
67+
if: always() && github.ref == 'refs/heads/main'
6868
steps:
6969
- name: Checkout metadata branch
7070
uses: actions/checkout@v4
@@ -144,35 +144,47 @@ jobs:
144144
145145
- name: Update wiki page
146146
run: |
147+
set -euo pipefail
148+
147149
cd wiki
148-
150+
151+
default_branch=$(git remote show origin | awk '/HEAD branch/ {print $NF}')
152+
if [[ -z "${default_branch}" ]]; then
153+
echo "Unable to determine wiki default branch"
154+
exit 1
155+
fi
156+
157+
git checkout "${default_branch}"
158+
149159
# Configure git
150160
git config user.name "GitHub Actions Bot"
151161
git config user.email "github-actions[bot]@users.noreply.github.com"
152-
162+
163+
# Normalize any pre-existing compatibility report filenames
153164
# Copy the generated markdown to wiki
154165
cp ../backstage-compatibility-report.md "Backstage-Compatibility-Report.md"
155-
156-
# Check if there are changes
157-
if ! git diff --quiet; then
158-
# Add the file
159-
git add "Backstage-Compatibility-Report.md"
160-
166+
167+
# Stage the report and check for changes
168+
git add "Backstage-Compatibility-Report.md"
169+
170+
if ! git diff --cached --quiet; then
171+
161172
# Calculate counts for commit message
162173
required_count=$(echo "${INPUT_INCOMPATIBLE_REQUIRED_WORKSPACES}" | wc -w)
163174
unrequired_count=$(echo "${INPUT_INCOMPATIBLE_UNREQUIRED_WORKSPACES}" | wc -w)
164175
total_count=$((required_count + unrequired_count))
165-
176+
166177
git commit -m "Update Backstage Compatibility Report
167178
168179
- Total incompatible: ${total_count}
169180
- Required: ${required_count}
170181
- Optional: ${unrequired_count}
171-
182+
172183
Generated from: ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${{ github.run_id }}"
173-
git push
184+
git push origin "${default_branch}"
174185
echo "Wiki page updated successfully"
175186
else
187+
git restore --staged "Backstage-Compatibility-Report.md"
176188
echo "No changes detected, wiki page is up to date"
177189
fi
178190
env:

versions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"backstage": "1.42.5",
33
"node": "22.19.0",
4-
"cli": "1.7.2",
4+
"cli": "1.8.0",
55
"cliPackage": "@red-hat-developer-hub/cli"
66
}

workspaces/3scale/source.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"repo":"https://github.com/backstage/community-plugins","repo-ref":"7d5fae57a76247166957a50176cc7e6b7a408178","repo-flat":false,"repo-backstage-version":"1.39.0"}
1+
{"repo":"https://github.com/backstage/community-plugins","repo-ref":"7473e9e414fce169c7baf42b24cc853734ca8332","repo-flat":false,"repo-backstage-version":"1.42.5"}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"name": "backstage-community.plugin-acr",
3+
"exposedModules": {
4+
"PluginRoot": "./src/index.ts",
5+
"alpha": "./src/alpha.tsx"
6+
}
7+
}

workspaces/acr/source.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"repo":"https://github.com/backstage/community-plugins","repo-ref":"d44eb8d2406f60ba70f2c4f9c798b61511f2609d","repo-flat":false,"repo-backstage-version":"1.39.0"}
1+
{"repo":"https://github.com/backstage/community-plugins","repo-ref":"903fcb4e3acee3e36fded720e936be0ecca0fefd","repo-flat":false,"repo-backstage-version":"1.42.5"}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"repo":"https://github.com/redhat-developer/rhdh-plugins","repo-ref":"79c1664996a3b4a065432ab80f45770da6eb3ac7","repo-flat":false,"repo-backstage-version":"1.39.1"}
1+
{"repo":"https://github.com/redhat-developer/rhdh-plugins","repo-ref":"5f59b046d58cdf8b52f37322841e518c0c74bccb","repo-flat":false,"repo-backstage-version":"1.42.5"}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"version": "1.42.1"
3+
}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
plugins/catalog-backend-module-model-catalog:
2+
plugins/catalog-techdoc-url-reader-backend:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"repo":"https://github.com/redhat-developer/rhdh-plugins","repo-ref":"7a85a65d51e6143ced5050b7da755cccfa8a3415","repo-flat":false,"repo-backstage-version":"1.42.1"}

0 commit comments

Comments
 (0)