diff --git a/.editorconfig b/.editorconfig index 7122a7a..9345cf7 100644 --- a/.editorconfig +++ b/.editorconfig @@ -7,6 +7,9 @@ indent_style = space insert_final_newline = true trim_trailing_whitespace = true +[*.md] +indent_size = 2 + [*.{yaml,yml}] indent_size = 2 diff --git a/README.md b/README.md index 0157aa1..6062540 100644 --- a/README.md +++ b/README.md @@ -131,17 +131,17 @@ none #### Side Effects -The `COMPOSER_ROOT_VERSION` environment variable contains the root version if it has been defined as `branch-alias` in `composer.json`. - -```json -{ - "extra": { - "branch-alias": { - "dev-main": "10.0-dev" +- The `COMPOSER_ROOT_VERSION` environment variable contains the root version if it has been defined as `branch-alias` in `composer.json`. + + ```json + { + "extra": { + "branch-alias": { + "dev-main": "10.0-dev" + } } } -} -``` + ``` ### `ergebnis/.github/actions/composer/install` @@ -208,22 +208,22 @@ none #### Side Effects -When `dependencies` is set to `"lowest"`, dependencies are installed in the directory specified by `working-directory` with +- When `dependencies` is set to `"lowest"`, dependencies are installed in the directory specified by `working-directory` with -```shell -composer update --ansi --no-interaction --no-progress --prefer-lowest -```` -When `dependencies` is set to `"locked"`, dependencies are installed in the directory specified by `working-directory` with + ```shell + composer update --ansi --no-interaction --no-progress --prefer-lowest + ```` +- When `dependencies` is set to `"locked"`, dependencies are installed in the directory specified by `working-directory` with -```shell -composer install --ansi --no-interaction --no-progress -``` + ```shell + composer install --ansi --no-interaction --no-progress + ``` -When `dependencies` is set to `"highest"`, dependencies are installed in the directory specified by `working-directory` with +- When `dependencies` is set to `"highest"`, dependencies are installed in the directory specified by `working-directory` with -```shell -composer update --ansi --no-interaction --no-progress -```` + ```shell + composer update --ansi --no-interaction --no-progress + ```` ### `ergebnis/.github/actions/github/pull-request/add-assignee` @@ -276,7 +276,7 @@ none #### Side Effects -The GitHub user with the username specified in the `assignee` input is assigned to the pull request. +- The GitHub user with the username specified in the `assignee` input is assigned to the pull request. ### `ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name` @@ -369,7 +369,7 @@ none #### Side Effects -The pull request is approved by the user who owns the GitHub token specified with the `github-token` input. +- The pull request is approved by the user who owns the GitHub token specified with the `github-token` input. ### `ergebnis/.github/actions/github/pull-request/merge` @@ -421,7 +421,7 @@ none #### Side Effects -The pull request is merged by the user who owns the GitHub token specified with the `github-token` input. +- The pull request is merged by the user who owns the GitHub token specified with the `github-token` input. ### `ergebnis/.github/actions/github/pull-request/request-review` @@ -474,7 +474,7 @@ none #### Side Effects -A pull request review is requested for the user identified by the value of the `reviewer` input by the user who owns the GitHub token specified with the `github-token` input. +- A pull request review is requested for the user identified by the value of the `reviewer` input by the user who owns the GitHub token specified with the `github-token` input. ### `ergebnis/.github/actions/github/release/create` @@ -516,7 +516,7 @@ none #### Side Effects -A release is created by the user who owns the GitHub token specified with the `github-token` input. +- A release is created by the user who owns the GitHub token specified with the `github-token` input. ### `ergebnis/.github/actions/oh-dear/check/request-run` @@ -562,7 +562,7 @@ none #### Side Effects -A check run is requested by the user who owns the Oh Dear API token specified with the `oh-dear-api-token` input for the check identified by the `oh-dear-check-id` input. +- A check run is requested by the user who owns the Oh Dear API token specified with the `oh-dear-api-token` input for the check identified by the `oh-dear-check-id` input. ### `ergebnis/.github/actions/oh-dear/maintenance-period/start` @@ -608,7 +608,7 @@ none #### Side Effects -A maintenance period is started by the user who owns the Oh Dear API token specified with the `oh-dear-api-token` input for the site identified by the `oh-dear-site-id` input. +- A maintenance period is started by the user who owns the Oh Dear API token specified with the `oh-dear-api-token` input for the site identified by the `oh-dear-site-id` input. ### `ergebnis/.github/actions/oh-dear/maintenance-period/stop` @@ -654,7 +654,7 @@ none #### Side Effects -A maintenance period is stopped by the user who owns the Oh Dear API token specified with the `oh-dear-api-token` input for the site identified by the `oh-dear-site-id` input. +- A maintenance period is stopped by the user who owns the Oh Dear API token specified with the `oh-dear-api-token` input for the site identified by the `oh-dear-site-id` input. ### `ergebnis/.github/actions/phive/install` @@ -705,11 +705,7 @@ none #### Side Effects -Dependencies are installed, assuming - -- `phive` is available -- `phive` could find a `phars.xml` -- keys presented by packages are listed using the `trust-gpg-keys` option +- Given that `phive` is available, `phive` could find a `phars.xml`, and keys presented by packages are listed using the `trust-gpg-keys` option, dependencies are installed with `phive`. The directory configured by the `phive-home` directory is cached using [`actions/cache`](https://github.com/actions/cache).