Skip to content

Commit

Permalink
Merge pull request #13 from studio24/rename-to-tasks
Browse files Browse the repository at this point in the history
Rename to tasks
  • Loading branch information
AlanJIsaacson authored Apr 9, 2021
2 parents 4ff4206 + 00a8e6c commit e7605ca
Show file tree
Hide file tree
Showing 20 changed files with 20 additions and 20 deletions.
18 changes: 9 additions & 9 deletions all.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?php

// Require all Studio 24 Deployer task
require_once __DIR__ . '/task/sync.php';
require_once __DIR__ . '/task/build-summary.php';
require_once __DIR__ . '/task/show-summary.php';
require_once __DIR__ . '/task/check-branch.php';
require_once __DIR__ . '/task/confirm-continue.php';
require_once __DIR__ . '/task/display-disk-space.php';
require_once __DIR__ . '/task/vendors-subpath.php';
require_once __DIR__ . '/task/notify-slack.php';
require_once __DIR__ . '/task/check-local-deployer.php';
require_once __DIR__ . '/tasks/sync.php';
require_once __DIR__ . '/tasks/build-summary.php';
require_once __DIR__ . '/tasks/show-summary.php';
require_once __DIR__ . '/tasks/check-branch.php';
require_once __DIR__ . '/tasks/confirm-continue.php';
require_once __DIR__ . '/tasks/display-disk-space.php';
require_once __DIR__ . '/tasks/vendors-subpath.php';
require_once __DIR__ . '/tasks/notify-slack.php';
require_once __DIR__ . '/tasks/check-local-deployer.php';
2 changes: 1 addition & 1 deletion docs/build-summary.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Creates a summary of current build information to preview what is currently depl
Either [install all Studio 24 tasks](../README.md#installation) or install this individual task by adding to your `deploy.php`:

```php
require 'vendor/studio24/deployer-recipes/task/build-summary.php';
require 'vendor/studio24/deployer-recipes/tasks/build-summary.php';
```

## Configuration
Expand Down
2 changes: 1 addition & 1 deletion docs/check-branch.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Checks the branch for deployment, to ensure that only the default branch (main/m
Either [install all Studio 24 tasks](../README.md#installation) or install this individual task by adding to your `deploy.php`:

```php
require 'vendor/studio24/deployer-recipes/task/check-branch.php';
require 'vendor/studio24/deployer-recipes/tasks/check-branch.php';
```

## Configuration
Expand Down
2 changes: 1 addition & 1 deletion docs/check-local-deployer.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Checks that deployment is running via the local Deployer install.
Either [install all Studio 24 tasks](../README.md#installation) or install this individual task by adding to your `deploy.php`:

```php
require 'vendor/studio24/deployer-recipes/src/check-local-deployer.php';
require 'vendor/studio24/deployer-recipes/tasks/check-local-deployer.php';
```

## Configuration
Expand Down
2 changes: 1 addition & 1 deletion docs/confirm-continue.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Simple recipe to ask confirmation from user before continuing with deployment.
Either [install all Studio 24 tasks](../README.md#installation) or install this individual task by adding to your `deploy.php`:

```php
require 'vendor/studio24/deployer-recipes/task/confirm-deployment.php';
require 'vendor/studio24/deployer-recipes/tasks/confirm-deployment.php';
```

## Configuration
Expand Down
2 changes: 1 addition & 1 deletion docs/display-disk-space.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Displays the disk usage of the remote server in the terminal
Either [install all Studio 24 tasks](../README.md#installation) or install this individual task by adding to your `deploy.php`:

```php
require 'vendor/studio24/deployer-recipes/task/display-disk-space.php';
require 'vendor/studio24/deployer-recipes/tasks/display-disk-space.php';
```

## Configuration
Expand Down
2 changes: 1 addition & 1 deletion docs/notify-slack.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Send a notification to Slack on production deploy. **Please note** this task onl
Either [install all Studio 24 tasks](../README.md#installation) or install this individual task by adding to your `deploy.php`:

```php
require 'vendor/studio24/deployer-recipes/task/notify-slack.php';
require 'vendor/studio24/deployer-recipes/tasks/notify-slack.php';
```

## Configuration
Expand Down
2 changes: 1 addition & 1 deletion docs/show-summary.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Displays a human friendly summary of the current build information to preview wh
Either [install all Studio 24 tasks](../README.md#installation) or install this individual task by adding to your `deploy.php`:

```php
require 'vendor/studio24/deployer-recipes/task/show-summary.php';
require 'vendor/studio24/deployer-recipes/tasks/show-summary.php';
```

## Configuration
Expand Down
2 changes: 1 addition & 1 deletion docs/sync.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ in a deployment recipe.
Either [install all Studio 24 tasks](../README.md#installation) or install this individual task by adding to your `deploy.php`:

```php
require 'vendor/studio24/deployer-recipes/task/sync.php';
require 'vendor/studio24/deployer-recipes/tasks/sync.php';
```

## Configuration
Expand Down
2 changes: 1 addition & 1 deletion docs/vendors-subpath.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ you want to install on deployment.
Either [install all Studio 24 tasks](../README.md#installation) or install this individual task by adding to your `deploy.php`:

```php
require 'vendor/studio24/deployer-recipes/task/vendors-subpath.php';
require 'vendor/studio24/deployer-recipes/tasks/vendors-subpath.php';
```

## Configuration
Expand Down
4 changes: 2 additions & 2 deletions phpcs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="PHP_CodeSniffer" xsi:noNamespaceSchemaLocation="phpcs.xsd">

<file>src</file>
<file>task</file>
<file>tasks</file>

<arg name="basepath" value="."/>
<arg name="colors"/>
Expand All @@ -17,4 +17,4 @@
<!-- Test for PSR-12 -->
<rule ref="PSR12" />

</ruleset>
</ruleset>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit e7605ca

Please sign in to comment.