Skip to content

Update github-actions (major) #211

Update github-actions (major)

Update github-actions (major) #211

# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
name: "Build Changelog Generator"
on:
pull_request:
paths:
- 'changelog-generator/**'
- '.github/workflows/changelog-generator.yml'
push:
branches:
- "2.1.x"
paths:
- 'changelog-generator/**'
- '.github/workflows/changelog-generator.yml'
concurrency:
group: changelog-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches
cancel-in-progress: true
jobs:
changelog-generator:
name: "Build Changelog Generator"
runs-on: "ubuntu-latest"
timeout-minutes: 60
steps:
- name: "Checkout"
uses: actions/checkout@v5
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
php-version: "8.2"
- uses: "ramsey/composer-install@v3"
- name: "Install Changelog Generator dependencies"
uses: "ramsey/composer-install@v3"
with:
working-directory: "changelog-generator"
- name: "PHPStan"
working-directory: "changelog-generator"
run: "../bin/phpstan"