fix: multiproc mapper max threads and default numprocess (#112) #18
Workflow file for this run
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: Changelog | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
generate_changelog: | |
if: github.repository == 'numaproj/numaflow-python' | |
runs-on: ubuntu-latest | |
name: Generate changelog | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: main | |
fetch-depth: 0 | |
- run: git fetch --prune --prune-tags | |
- run: git tag -l 'v*' | |
- run: ./.hack/changelog.sh > CHANGELOG.md | |
- uses: peter-evans/create-pull-request@v3 | |
with: | |
title: 'docs: updated CHANGELOG.md' | |
commit-message: 'docs: updated CHANGELOG.md' | |
signoff: true |