0.3.79 #113
Workflow file for this run
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
# 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.1" | |
- name: "Checkout phpstan-src" | |
uses: actions/checkout@v4 | |
with: | |
repository: phpstan/phpstan-src | |
ref: 1.10.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@v5 | |
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 <[email protected]>" | |
commit-message: "Update PHP 8 stubs" |