From f4fdccb753adf324ff28c21bab36823a59e4af06 Mon Sep 17 00:00:00 2001 From: Emad Rad Date: Mon, 22 Jul 2024 01:42:05 +0330 Subject: [PATCH 1/2] fix: master branch sunset As it mentioned in the gh-action-pypi-publish repo, the master branch version has been sunset and we should use release/v1. --- .github/workflows/pypi-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pypi-publish.yml b/.github/workflows/pypi-publish.yml index 871631e..4be0ef9 100644 --- a/.github/workflows/pypi-publish.yml +++ b/.github/workflows/pypi-publish.yml @@ -24,7 +24,7 @@ jobs: run: python setup.py sdist bdist_wheel - name: Publish to PyPI - uses: pypa/gh-action-pypi-publish@master + uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PYPI_UPLOAD_TOKEN }} From 1742837f21732a10acb01be55d73f784ad896b09 Mon Sep 17 00:00:00 2001 From: Navin Karkera Date: Fri, 2 Aug 2024 16:17:50 +0530 Subject: [PATCH 2/2] feat: add catalog-info.yaml file --- catalog-info.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 catalog-info.yaml diff --git a/catalog-info.yaml b/catalog-info.yaml new file mode 100644 index 0000000..c305bd1 --- /dev/null +++ b/catalog-info.yaml @@ -0,0 +1,15 @@ +# This file records information about this repo. Its use is described in OEP-55: +# https://open-edx-proposals.readthedocs.io/en/latest/processes/oep-0055-proc-project-maintainers.html + +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: 'RecommenderXBlock' + description: "An XBlock to display list of recommended resources for a given problem." + annotations: + openedx.org/component-type: "XBlock" + openedx.org/arch-interest-groups: "" +spec: + owner: user:navinkarkera + type: 'library' + lifecycle: 'production'