Skip to content

Commit

Permalink
copy pasta to fix checks
Browse files Browse the repository at this point in the history
would be nice if actions had some way to just bail out of a job early instead of clowning around with 2 jobs...
  • Loading branch information
dktapps committed Oct 30, 2024
1 parent b4498f7 commit 081d5d4
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/draft-release-pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,26 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/[email protected]
with:
php-version: ${{ matrix.php-version }}

- name: Restore Composer package cache
uses: actions/cache@v4
with:
path: |
~/.cache/composer/files
~/.cache/composer/vcs
key: "composer-v2-cache-${{ hashFiles('./composer.lock') }}"
restore-keys: |
composer-v2-cache-
- name: Install Composer dependencies
run: composer install --no-dev --prefer-dist --no-interaction --ignore-platform-reqs

- name: Check changelog file is present
id: file-presence
run: |
Expand Down

0 comments on commit 081d5d4

Please sign in to comment.