1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
# See the Conductor setup guide at https://packagist.com/docs/conductor/getting-started
on:
repository_dispatch:
types:
- dependency_update
name: Private Packagist Conductor
permissions:
contents: write
jobs:
conductor:
name: Private Packagist Conductor
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
# Install PHP. You can also replace this step by
# reusing an existing workflow that sets up PHP.
# Additional services required to run composer
# install/update, such as Node.js or a database,
# must be set up here too.
- name: Install PHP
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # 2.36.0
with:
php-version: "latest"
coverage: "none"
# See the Conductor GitHub Action at https://github.com/packagist/conductor-github-action
- name: "Running Conductor"
uses: packagist/conductor-github-action@v1
|