From bf070650905c071bc3a0d85744ace6cc4a30c766 Mon Sep 17 00:00:00 2001 From: deep1401 Date: Thu, 13 Nov 2025 15:26:58 -0700 Subject: [PATCH 1/2] change pypi workflow to do a release upon a github release --- .github/workflows/python-package.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index c5eb77a..e174651 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -11,9 +11,6 @@ name: Upload Python Package on: release: types: [published] - push: - branches: - - main permissions: contents: read @@ -54,11 +51,11 @@ jobs: environment: name: pypi # OPTIONAL: uncomment and update to include your PyPI project URL in the deployment status: - # url: https://pypi.org/p/YOURPROJECT + url: https://pypi.org/p/transformerlab-inference # # ALTERNATIVE: if your GitHub Release name is the PyPI project version string # ALTERNATIVE: exactly, uncomment the following line instead: - # url: https://pypi.org/project/YOURPROJECT/${{ github.event.release.name }} + # url: https://pypi.org/project/transformerlab-inference/${{ github.event.release.name }} steps: - uses: actions/checkout@v4 From be19d0cd729808329d505794311785372f547b8e Mon Sep 17 00:00:00 2001 From: deep1401 Date: Thu, 13 Nov 2025 15:27:59 -0700 Subject: [PATCH 2/2] delete PR Template --- .github/PULL_REQUEST_TEMPLATE.md | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index ceaaa12..0000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,17 +0,0 @@ - - - - -## Why are these changes needed? - - - -## Related issue number (if applicable) - - - -## Checks - -- [ ] I've run `format.sh` to lint the changes in this PR. -- [ ] I've included any doc changes needed. -- [ ] I've made sure the relevant tests are passing (if applicable).