diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..6417252 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,35 @@ +## Purpose + + +## Approach + + +## Changes Made + + +- +- +- + +## Testing Done + + +## Screenshots (if appropriate) + + +## Additional Notes + + +## Checklist + + +- [ ] My code follows the code style of this project. +- [ ] My change requires a change to the documentation. +- [ ] I have updated the documentation accordingly. +- [ ] I have added tests to cover my changes. +- [ ] All new and existing tests passed. + +## References + + +- diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8d0af44..c1d86e9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,6 +31,7 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 + fetch-tags: true token: ${{ steps.app-token.outputs.token }} - name: Set up Python @@ -52,6 +53,11 @@ jobs: python -m pip install --upgrade pip pip install python-semantic-release + - name: Fetch and update + run: | + git fetch origin + git reset --hard origin/${{ github.ref_name }} + - name: Semantic Release id: github-release uses: python-semantic-release/python-semantic-release@v9.8.6 diff --git a/requirements.txt b/requirements.txt index b182c00..c5ebdab 100644 Binary files a/requirements.txt and b/requirements.txt differ