Skip to content

0.3.109

0.3.109 #142

Workflow file for this run

# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
name: "Send pull request"
on:
release:
types: [published]
jobs:
send-pr:
name: "Send pull request"
runs-on: "ubuntu-latest"
steps:
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
php-version: "8.3"
- name: "Checkout phpstan-src"
uses: actions/checkout@v4
with:
repository: phpstan/phpstan-src
ref: 1.12.x
path: phpstan-src
token: ${{ secrets.PHPSTAN_BOT_TOKEN }}
- name: "Install dependencies"
working-directory: ./phpstan-src
run: "composer install --no-interaction --no-progress --no-suggest"
- name: "Get old version"
working-directory: ./phpstan-src
id: old-version
run: echo "version=$(composer info phpstan/php-8-stubs --format json | jq --raw-output '.versions[0]')" >> $GITHUB_OUTPUT
- name: "Change composer.json"
working-directory: ./phpstan-src
run: "composer require phpstan/php-8-stubs:${{ github.ref_name }}"
- name: "Create Pull Request"
id: create-pr
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.PHPSTAN_BOT_TOKEN }}
path: ./phpstan-src
branch-suffix: random
delete-branch: true
title: "Update PHP 8 stubs to ${{ github.ref_name }}"
body: "Update PHP 8 stubs to ${{ github.ref_name }}: https://github.com/phpstan/php-8-stubs/compare/${{ steps.old-version.outputs.version }}...${{ github.ref_name }}"
committer: "phpstan-bot <ondrej+phpstanbot@mirtes.cz>"
commit-message: "Update PHP 8 stubs"