From 9122b2db36c51dda669a3eb71186525f386ad613 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Sun, 30 Jun 2024 20:48:56 -0700 Subject: [PATCH] Fix some release process issues (#408) --- .github/release.yml | 1 + .github/workflows/release.yml | 17 ----------------- 2 files changed, 1 insertion(+), 17 deletions(-) diff --git a/.github/release.yml b/.github/release.yml index c44d25c..5dc385f 100644 --- a/.github/release.yml +++ b/.github/release.yml @@ -13,6 +13,7 @@ changelog: labels: - "impact-bugfix" - title: "Documentation 📄" + labels: - "impact-docs" - title: "Maintenance 👷‍♀️" labels: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d69adce..5bd6ff1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -53,23 +53,6 @@ jobs: # Necessary to implicitly specify the repo to create the release for. - uses: actions/checkout@v4 - # OS-specific - - uses: actions/cache@v4 - with: - path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ hashFiles('release/requirements.txt') }} - restore-keys: | - ${{ runner.os }}-pip- - - - name: Install Python - uses: actions/setup-python@v5 - with: - python-version: 3.x - - - name: Install dependencies - run: python -m pip install -r release/requirements.txt - shell: bash - - name: Create release run: gh release create ${{ needs.details.outputs.tag }} --draft --generate-notes shell: bash