Skip to content

Commit 19014ad

Browse files
pscheitclaude
andcommitted
add Conductor workflow for dependency updates
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 11150a0 commit 19014ad

1 file changed

Lines changed: 40 additions & 0 deletions

File tree

.github/workflows/conductor.yaml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# See the Conductor setup guide at https://packagist.com/docs/conductor/getting-started
2+
3+
on:
4+
repository_dispatch:
5+
types:
6+
- dependency_update
7+
8+
name: Private Packagist Conductor
9+
10+
permissions:
11+
contents: write
12+
13+
jobs:
14+
conductor:
15+
name: Private Packagist Conductor
16+
runs-on: "ubuntu-latest"
17+
18+
steps:
19+
- uses: actions/checkout@v4
20+
21+
# Install PHP. You can also replace this step by
22+
# reusing an existing workflow that sets up PHP.
23+
# Additional services required to run composer
24+
# install/update, such as Node.js or a database,
25+
# must be set up here too.
26+
- name: Install PHP
27+
uses: "shivammathur/setup-php@v2"
28+
with:
29+
php-version: "latest"
30+
coverage: "none"
31+
# Make sure to install any additional extensions that are
32+
# required to run the composer install. For more details,
33+
# see https://github.com/shivammathur/setup-php#heavy_plus_sign-php-extension-support
34+
# extensions: mbstring, imagick, intl-70.1
35+
36+
# Set up any necessary config files or database here before composer install is run
37+
38+
# See the Conductor GitHub Action at https://github.com/packagist/conductor-github-action
39+
- name: "Running Conductor"
40+
uses: packagist/conductor-github-action@v1

0 commit comments

Comments
 (0)