Create the Release pull request #2
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: Create the Release pull request | |
on: | |
workflow_dispatch: | |
jobs: | |
create_release_pull_request: | |
name: Create the Release pull request | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Check out the latest code | |
uses: actions/checkout@v4 | |
- name: Read the current version | |
id: version | |
uses: christian-draeger/[email protected] | |
with: | |
path: "version.properties" | |
properties: "templateScriptVersion" | |
- uses: nimblehq/github-actions-workflows/[email protected] | |
with: | |
release_version: ${{ steps.version.outputs.templateScriptVersion }} | |
changelog_configuration: ".github/workflows/config/changelog-release.json" | |
assignee: bot-nimble |