release #18
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 draft release | |
on: | |
repository_dispatch: | |
types: | |
- release | |
workflow_dispatch: | |
inputs: | |
version: | |
description: 'Version of the Ruby package to release' | |
required: true | |
default: '3.3.4' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: www | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: www | |
- uses: actions/checkout@v4 | |
with: | |
repository: ruby/ruby | |
path: ruby | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.3.4 | |
- name: Generate draft release entry | |
run: | | |
ruby lib/draft-release.rb ${{ github.event.client_payload.version || github.event.inputs.version }} | |
- name: Update data files | |
run: | | |
tool/format-release ../www ${{ github.event.client_payload.version || github.event.inputs.version }} . | |
working-directory: ruby | |
- name: Create Commit | |
run: | | |
git config user.name "GitHub Actions Bot" | |
git config user.email "github-actions[bot]@users.noreply.github.com" | |
git add . | |
git commit -m "Create release for ${{ github.event.client_payload.version || github.event.inputs.version }}" | |
env: | |
GITHUB_TOKEN: ${{ secrets.MATZBOT_GITHUB_WORKFLOW_TOKEN }} | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
token: ${{ secrets.MATZBOT_GITHUB_WORKFLOW_TOKEN }} | |
branch: releases/${{ github.event.client_payload.version || github.event.inputs.version }} | |
delete-branch: true | |
title: "Create release for ${{ github.event.client_payload.version || github.event.inputs.version }}" | |
body: "This is an automated pull request to create a release" | |
draft: true | |