├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── Procfile ├── README.md ├── composer.json ├── composer.lock ├── feature └── automated-releases.feature ├── infection.json.dist ├── phpcs.xml.dist ├── phpstan.neon.dist ├── phpunit.xml.dist ├── psalm.xml.dist ├── public └── index.php ├── src ├── Environment │ └── Variables.php ├── Git │ └── Value │ │ ├── BranchName.php │ │ ├── MergeTargetCandidateBranches.php │ │ └── SemVerVersion.php ├── Github │ ├── Api │ │ ├── GraphQL │ │ │ ├── Query │ │ │ │ ├── GetMilestoneChangelog.php │ │ │ │ └── GetMilestoneChangelog │ │ │ │ │ └── Response │ │ │ │ │ ├── Author.php │ │ │ │ │ ├── IssueOrPullRequest.php │ │ │ │ │ ├── Label.php │ │ │ │ │ └── Milestone.php │ │ │ ├── RunGraphQLQuery.php │ │ │ └── RunQuery.php │ │ ├── Hook │ │ │ └── VerifyRequestSignature.php │ │ └── V3 │ │ │ ├── CreatePullRequest.php │ │ │ └── CreateRelease.php │ ├── CreateChangelogText.php │ ├── Event │ │ └── MilestoneClosedEvent.php │ ├── GenerateChangelog.php │ ├── JwageGenerateChangelog.php │ └── Value │ │ └── RepositoryName.php └── Gpg │ └── SecretKeyId.php └── test └── unit ├── Environment └── VariablesTest.php ├── Git └── Value │ ├── BranchNameTest.php │ ├── MergeTargetCandidateBranchesTest.php │ └── SemVerVersionTest.php ├── Github ├── Api │ ├── GraphQL │ │ ├── Query │ │ │ ├── GetMilestoneChangelog │ │ │ │ └── Response │ │ │ │ │ ├── AuthorTest.php │ │ │ │ │ ├── IssueOrPullRequestTest.php │ │ │ │ │ ├── LabelTest.php │ │ │ │ │ └── MilestoneTest.php │ │ │ └── GetMilestoneChangelogTest.php │ │ └── RunGraphQLQueryTest.php │ ├── Hook │ │ └── VerifyRequestSignatureTest.php │ └── V3 │ │ ├── CreatePullRequestTest.php │ │ └── CreateReleaseTest.php ├── CreateChangelogTextTest.php ├── Event │ └── MilestoneClosedEventTest.php ├── JwageGenerateChangelogTest.php └── Value │ └── RepositoryNameTest.php └── Gpg └── SecretKeyIdTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/Makefile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: vendor/bin/heroku-php-apache2 public/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/composer.lock -------------------------------------------------------------------------------- /feature/automated-releases.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/feature/automated-releases.feature -------------------------------------------------------------------------------- /infection.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/infection.json.dist -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /psalm.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/psalm.xml.dist -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/public/index.php -------------------------------------------------------------------------------- /src/Environment/Variables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/src/Environment/Variables.php -------------------------------------------------------------------------------- /src/Git/Value/BranchName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/src/Git/Value/BranchName.php -------------------------------------------------------------------------------- /src/Git/Value/MergeTargetCandidateBranches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/src/Git/Value/MergeTargetCandidateBranches.php -------------------------------------------------------------------------------- /src/Git/Value/SemVerVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/src/Git/Value/SemVerVersion.php -------------------------------------------------------------------------------- /src/Github/Api/GraphQL/Query/GetMilestoneChangelog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/src/Github/Api/GraphQL/Query/GetMilestoneChangelog.php -------------------------------------------------------------------------------- /src/Github/Api/GraphQL/Query/GetMilestoneChangelog/Response/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/src/Github/Api/GraphQL/Query/GetMilestoneChangelog/Response/Author.php -------------------------------------------------------------------------------- /src/Github/Api/GraphQL/Query/GetMilestoneChangelog/Response/IssueOrPullRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/src/Github/Api/GraphQL/Query/GetMilestoneChangelog/Response/IssueOrPullRequest.php -------------------------------------------------------------------------------- /src/Github/Api/GraphQL/Query/GetMilestoneChangelog/Response/Label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/src/Github/Api/GraphQL/Query/GetMilestoneChangelog/Response/Label.php -------------------------------------------------------------------------------- /src/Github/Api/GraphQL/Query/GetMilestoneChangelog/Response/Milestone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/src/Github/Api/GraphQL/Query/GetMilestoneChangelog/Response/Milestone.php -------------------------------------------------------------------------------- /src/Github/Api/GraphQL/RunGraphQLQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/src/Github/Api/GraphQL/RunGraphQLQuery.php -------------------------------------------------------------------------------- /src/Github/Api/GraphQL/RunQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/src/Github/Api/GraphQL/RunQuery.php -------------------------------------------------------------------------------- /src/Github/Api/Hook/VerifyRequestSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/src/Github/Api/Hook/VerifyRequestSignature.php -------------------------------------------------------------------------------- /src/Github/Api/V3/CreatePullRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/src/Github/Api/V3/CreatePullRequest.php -------------------------------------------------------------------------------- /src/Github/Api/V3/CreateRelease.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/src/Github/Api/V3/CreateRelease.php -------------------------------------------------------------------------------- /src/Github/CreateChangelogText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/src/Github/CreateChangelogText.php -------------------------------------------------------------------------------- /src/Github/Event/MilestoneClosedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/src/Github/Event/MilestoneClosedEvent.php -------------------------------------------------------------------------------- /src/Github/GenerateChangelog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/src/Github/GenerateChangelog.php -------------------------------------------------------------------------------- /src/Github/JwageGenerateChangelog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/src/Github/JwageGenerateChangelog.php -------------------------------------------------------------------------------- /src/Github/Value/RepositoryName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/src/Github/Value/RepositoryName.php -------------------------------------------------------------------------------- /src/Gpg/SecretKeyId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/src/Gpg/SecretKeyId.php -------------------------------------------------------------------------------- /test/unit/Environment/VariablesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/test/unit/Environment/VariablesTest.php -------------------------------------------------------------------------------- /test/unit/Git/Value/BranchNameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/test/unit/Git/Value/BranchNameTest.php -------------------------------------------------------------------------------- /test/unit/Git/Value/MergeTargetCandidateBranchesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/test/unit/Git/Value/MergeTargetCandidateBranchesTest.php -------------------------------------------------------------------------------- /test/unit/Git/Value/SemVerVersionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/test/unit/Git/Value/SemVerVersionTest.php -------------------------------------------------------------------------------- /test/unit/Github/Api/GraphQL/Query/GetMilestoneChangelog/Response/AuthorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/test/unit/Github/Api/GraphQL/Query/GetMilestoneChangelog/Response/AuthorTest.php -------------------------------------------------------------------------------- /test/unit/Github/Api/GraphQL/Query/GetMilestoneChangelog/Response/IssueOrPullRequestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/test/unit/Github/Api/GraphQL/Query/GetMilestoneChangelog/Response/IssueOrPullRequestTest.php -------------------------------------------------------------------------------- /test/unit/Github/Api/GraphQL/Query/GetMilestoneChangelog/Response/LabelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/test/unit/Github/Api/GraphQL/Query/GetMilestoneChangelog/Response/LabelTest.php -------------------------------------------------------------------------------- /test/unit/Github/Api/GraphQL/Query/GetMilestoneChangelog/Response/MilestoneTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/test/unit/Github/Api/GraphQL/Query/GetMilestoneChangelog/Response/MilestoneTest.php -------------------------------------------------------------------------------- /test/unit/Github/Api/GraphQL/Query/GetMilestoneChangelogTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/test/unit/Github/Api/GraphQL/Query/GetMilestoneChangelogTest.php -------------------------------------------------------------------------------- /test/unit/Github/Api/GraphQL/RunGraphQLQueryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/test/unit/Github/Api/GraphQL/RunGraphQLQueryTest.php -------------------------------------------------------------------------------- /test/unit/Github/Api/Hook/VerifyRequestSignatureTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/test/unit/Github/Api/Hook/VerifyRequestSignatureTest.php -------------------------------------------------------------------------------- /test/unit/Github/Api/V3/CreatePullRequestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/test/unit/Github/Api/V3/CreatePullRequestTest.php -------------------------------------------------------------------------------- /test/unit/Github/Api/V3/CreateReleaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/test/unit/Github/Api/V3/CreateReleaseTest.php -------------------------------------------------------------------------------- /test/unit/Github/CreateChangelogTextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/test/unit/Github/CreateChangelogTextTest.php -------------------------------------------------------------------------------- /test/unit/Github/Event/MilestoneClosedEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/test/unit/Github/Event/MilestoneClosedEventTest.php -------------------------------------------------------------------------------- /test/unit/Github/JwageGenerateChangelogTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/test/unit/Github/JwageGenerateChangelogTest.php -------------------------------------------------------------------------------- /test/unit/Github/Value/RepositoryNameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/test/unit/Github/Value/RepositoryNameTest.php -------------------------------------------------------------------------------- /test/unit/Gpg/SecretKeyIdTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doctrine/automatic-releases/HEAD/test/unit/Gpg/SecretKeyIdTest.php --------------------------------------------------------------------------------