Skip to content

update readme - test2 #2

update readme - test2

update readme - test2 #2

Workflow file for this run

name: Update Python Poetry packages
on:
pull_request_target:
types:
- closed
branches:
- test_version
jobs:
bump-up-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.4.2
- name: bump up patch version and update version in template_input.yaml
run: |
git config user.name github-actions
git config user.email github-actions@github.com
poetry version patch
PROJECT_VERSION=$(poetry version --short)
sed -i "1 s/.*/version: $PROJECT_VERSION/" template_input.yaml
git add template_input.yaml
git add pyproject.toml
- name: push changes
uses: ad-m/github-push-action@main
with:
github-token: ${{ secrets.VERSION_DECOIMPACT }}
git commit -m "bump up patch version from workflow: version $PROJECT_VERSION"
force_with_lease: true