name: hosted-post-merge_version_update on: workflow_dispatch: env: CARGO_TERM_COLOR: always jobs: versioning: runs-on: ubuntu-20.04 steps: - name: Checkout uses: actions/checkout@v3 - run: | git config --global user.email "info@thin-edge.io" git config --global user.name "Versioneer" - name: enable toolchain via github action uses: actions-rs/toolchain@v1 with: toolchain: 1.58.1 components: cargo override: true - name: Enable cache uses: Swatinem/rust-cache@v1 - name: Install cargo-release uses: actions-rs/cargo@v1 with: command: install args: --version 0.21.0 cargo-release - name: Increment version and tag uses: actions-rs/cargo@v1 with: command: release args: patch --no-publish --no-push --no-tag -vv --no-dev-version --no-confirm --execute - name: Create Pull Request uses: peter-evans/create-pull-request@v4 with: commit-message: Patch version bump delete-branch: true title: Patch version bump body: Patch version bump reviewers: rina23q