From 329651ed0c18555bdbf20422013285fecf4e59d5 Mon Sep 17 00:00:00 2001 From: Kamil Kisiela Date: Thu, 18 Apr 2019 16:52:02 +0200 Subject: [PATCH 1/2] github: load `.yaml` file too --- packages/github/src/probot.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/github/src/probot.ts b/packages/github/src/probot.ts index dcf9835693..079b5e9141 100644 --- a/packages/github/src/probot.ts +++ b/packages/github/src/probot.ts @@ -201,7 +201,7 @@ export async function handleAction({ async function loadConfig(): Promise { const identifier = 'graphql-inspector'; - const yamlConfig = await getGithubConfig(context, identifier + '.yml'); + const yamlConfig = await getGithubConfig(context, identifier + '.yaml'); const ymlConfig = await getGithubConfig(context, identifier + '.yml'); if (yamlConfig || ymlConfig) { From 4a2506713a9bbe64132e34988043d13984caaed3 Mon Sep 17 00:00:00 2001 From: Kamil Kisiela Date: Thu, 18 Apr 2019 16:53:28 +0200 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a93abe0c12..02cc44ad85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ### vNEXT +- **github**: load `.yaml` file too [PR #216](https://github.com/kamilkisiela/graphql-inspector/pull/216) + ### v1.17.0 - **action**: Update Check Run instead of creating an extra one [PR #177](https://github.com/kamilkisiela/graphql-inspector/pull/177) - thanks to [@BeeeQueue](http://github.com/BeeeQueue)