diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml deleted file mode 100644 index b4b26f8..0000000 --- a/.github/release-drafter.yml +++ /dev/null @@ -1,41 +0,0 @@ -name-template: "v$RESOLVED_VERSION" -tag-template: "v$RESOLVED_VERSION" -categories: - - title: "🚀 Features" - labels: - - "feature" - - "enhancement" - - title: "🐛 Bug Fixes" - labels: - - "fix" - - "bugfix" - - "bug" - - title: "🧰 Maintenance" - labels: - - "chore" - - "maintenance" - - title: "📚 Documentation" - labels: - - "documentation" - - "docs" - - title: "🔧 Refactoring" - labels: - - "refactor" - - "refactoring" -change-template: "- $TITLE @$AUTHOR (#$NUMBER)" -change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks. -version-resolver: - major: - labels: - - "major" - minor: - labels: - - "minor" - patch: - labels: - - "patch" - default: patch -template: | - ## Changes - - $CHANGES diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index 2004359..f99f30b 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -102,20 +102,3 @@ jobs: - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@release/v1 - - update_release_draft: - name: Update Release Notes - needs: publish-pypi - runs-on: ubuntu-latest - container: ubuntu:latest - timeout-minutes: 10 - permissions: - contents: write - pull-requests: read - steps: - - name: Set GHE_HOST - run: echo "GHE_HOST=${GITHUB_SERVER_URL##https:\/\/}" >> ${GITHUB_ENV} - - - uses: release-drafter/release-drafter@v6 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release-drafter.yaml b/.github/workflows/release-drafter.yaml deleted file mode 100644 index bce094f..0000000 --- a/.github/workflows/release-drafter.yaml +++ /dev/null @@ -1,23 +0,0 @@ -name: Release Drafter - -on: - push: - branches: - - main - pull_request_target: - types: [opened, reopened, synchronize] - -permissions: - contents: read - -jobs: - update_release_draft: - name: Update Release Draft - runs-on: ubuntu-latest - permissions: - contents: write - pull-requests: write - steps: - - uses: release-drafter/release-drafter@v6 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/mkdocs.yml b/mkdocs.yml index 80777a2..3539d18 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -3,7 +3,7 @@ edit_uri: "edit/main/docs" repo_name: "binned-cdf" repo_url: "https://github.com/famura/binned-cdf" site_author: "Fabio Muratore" -site_description: "Implementations of the CRPS using PyTorch" +site_description: "A PyTorch-based distribution parametrized by the logits of CDF bins" site_dir: .site site_name: "binned-cdf" site_url: "https://famura.github.io/binned-cdf"