Skip to content

Commit

Permalink
New workflow: Composer Normalize (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
tangrufus authored Dec 30, 2024
1 parent 8ebbff0 commit ba07c54
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/composer-normalize.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Composer Normalize

on:
workflow_call:
inputs:
# shivammathur/setup-php
php-version:
description: Setup PHP version.
default: '8.4'
type: string

composer-normalize-version: # tools
description: Setup composer-normalize version.
default: '2'
type: string

permissions: {}

jobs:
composer-normalize:
uses: typisttech/.github/.github/workflows/create-auto-merged-pull-request-php.yml@v2
permissions:
contents: read
with:
command: composer-normalize
php-version: ${{ inputs.php-version }}
tools: composer-normalize:${{ inputs.composer-normalize-version }}
composer-install: false
branch: tastendruck/composer-normalize/${{ github.ref_name }}
labels: composer-normalize
secrets: inherit

0 comments on commit ba07c54

Please sign in to comment.