Add limit and offset to allow pagination for engage pages and takeove… #66
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
name: Release Drafter | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
get_version: | |
runs-on: ubuntu-latest | |
outputs: | |
version: ${{ steps.get_version.outputs.version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- id: get_version | |
run: echo "##[set-output name=version;]"$(grep '^[[:blank:]]*version' setup.py | cut -d'"' -f 2) | |
update_release_draft: | |
needs: get_version | |
runs-on: ubuntu-latest | |
steps: | |
# Create Release notes as Pull Requests are merged into "main" | |
- uses: release-drafter/release-drafter@v6 | |
with: | |
tag: "${{ needs.get_version.outputs.version }}" | |
version: "${{ needs.get_version.outputs.version }}" | |
publish: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |