Replace types-pkg-resources with types-setuptools (#6039) #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# This updates the current draft release notes when a PR is merged | |
# | |
name: Add to Release Notes | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
draft-release: | |
runs-on: ubuntu-20.04 | |
if: github.repository == 'sqlfluff/sqlfluff' | |
steps: | |
- name: Update release notes | |
uses: release-drafter/release-drafter@v5 | |
# If it's a release PR, then we should also update | |
# the header and title here too. | |
# with: | |
# name: ${{ }} | |
# header: ${{ }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |