Skip to content

Use format-release for yaml update #5

Use format-release for yaml update

Use format-release for yaml update #5

Workflow file for this run

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
steps:

Check failure on line 17 in .github/workflows/draft-release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/draft-release.yml

Invalid workflow file

You have an error in your yaml syntax on line 17
- 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@v6
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
working-directory: www