Skip to content

Update to next release #4

Update to next release

Update to next release #4

Workflow file for this run

name: Update to next release
on:
milestone:
types: [created]
workflow_dispatch:
inputs:
nextReleaseVersion:
description: 'The version of the release, e.g.: 4.35'
type: string
required: true
jobs:
update:
if: github.event_name == 'workflow_dispatch' || contains(github.event.milestone.description, 'Release')
permissions:
pull-requests: write
contents: write
uses: HannesWell/eclipse.platform.releng.aggregator/.github/workflows/updateRelease.yml@master
with:
nextReleaseVersion: ${{ inputs.nextReleaseVersion || github.event.milestone.title }}
botName: Eclipse Equinox Bot
botMail: equinox-bot@eclipse.org
secrets:
githubBotPAT: ${{ secrets.EQUINOX_BOT_PAT }}