From 5a053c6cd554c40ed08ff760bc9bde980fe3113b Mon Sep 17 00:00:00 2001 From: Huy Nguyen Date: Thu, 22 Aug 2019 09:44:34 -0700 Subject: [PATCH 1/2] Improve docs for GitHub Actions Reference: https://help.github.com/en/articles/workflow-syntax-for-github-actions#jobsjob_idstepswithargs --- source/ci_source/providers/GitHubActions.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/ci_source/providers/GitHubActions.ts b/source/ci_source/providers/GitHubActions.ts index 0955188d6..9b3582512 100644 --- a/source/ci_source/providers/GitHubActions.ts +++ b/source/ci_source/providers/GitHubActions.ts @@ -112,7 +112,8 @@ import { readFileSync, existsSync } from "fs" * * ``` * - uses: danger/... - * args: "--dangerfile artsy/peril-settings/org/allPRs.ts" + * with: + * args: "--dangerfile artsy/peril-settings/org/allPRs.ts" * ``` * * This runs the file [`org/allPRs.ts`](https://github.com/artsy/peril-settings/blob/master/org/allPRs.ts) From 0dd31320bf4a4abbdeb9e97a0af375b4a1a2b9b3 Mon Sep 17 00:00:00 2001 From: Huy Nguyen Date: Thu, 22 Aug 2019 09:51:08 -0700 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd158432e..e1bb77a7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,8 @@ +- Improve docs for GitHub Actions - [@nguyenhuy] + # 9.1.8 - Get GitHub Actions event file pathname from env variable - [@IljaDaderko]