Skip to content

Commit

Permalink
Added test workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
davereid committed Apr 22, 2024
1 parent a256f1b commit 7fcc0c1
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ComposerLockDiff.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "Composer Lock Diff"

on:
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:
inputs:
pr-number:
description: 'Pull request number'
required: true
type: string

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
Composer-Lock-Diff:
uses: ./scaffold/github/workflows/ComposerLockDiff.yml
with:
pr-number: ${{ inputs.pr-number || github.event.number }}
secrets: inherit

0 comments on commit 7fcc0c1

Please sign in to comment.