File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments