diff --git a/docs/commands.md b/docs/commands.md index 8668fd3..8bdb662 100644 --- a/docs/commands.md +++ b/docs/commands.md @@ -12,6 +12,10 @@ This command runs the local Danger configuration against a Github PR without mod - Github Pull Request URL +### Environment variables + +- GITHUB_TOKEN with a GitHub token + ## gitlab-local This command runs the local Danger configuration against a Gitlab PR without modifying anything; diff --git a/src/Struct/File.php b/src/Struct/File.php index 76e3e7b..e76ca47 100644 --- a/src/Struct/File.php +++ b/src/Struct/File.php @@ -8,6 +8,7 @@ abstract class File public const STATUS_ADDED = 'added'; public const STATUS_REMOVED = 'removed'; public const STATUS_MODIFIED = 'modified'; + public const STATUS_RENAMED = 'renamed'; public string $name;