Skip to content

http4k-release

http4k-release #155

on:
repository_dispatch:
types: [http4k-release]
jobs:
create-pr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Update release
uses: technote-space/create-pr-action@v2
with:
EXECUTE_COMMANDS: |
curl -s https://raw.githubusercontent.com/http4k/http4k/master/tools/replace_string_match.sh | bash /dev/stdin "gradle.properties" "http4kVersion" "http4kVersion=${{ github.event.client_payload.version }}"
COMMIT_MESSAGE: 'Auto-upgrade to ${{ github.event.client_payload.version }}'
COMMIT_NAME: 'Auto-upgrade to ${{ github.event.client_payload.version }}'
PR_BRANCH_PREFIX: auto/
PR_BRANCH_NAME: ${{ github.event.client_payload.version }}
PR_TITLE: 'Auto-upgrade to ${{ github.event.client_payload.version }}'
GITHUB_TOKEN: ${{ secrets.TOOLBOX_REPO_TOKEN }}