-
-
Notifications
You must be signed in to change notification settings - Fork 368
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1452 from koji-1009/fix/format
chore: Fix formatting of environment variable example
- Loading branch information
Showing
1 changed file
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,8 @@ import { readFileSync, existsSync } from "fs" | |
* yarn test | ||
* - name: Danger | ||
* run: yarn danger ci | ||
* env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
* env: | ||
* GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
* ``` | ||
* | ||
* If you are not running in a JavaScript ecosystem, or don't want to include the dependency then | ||
|
@@ -102,7 +103,8 @@ import { readFileSync, existsSync } from "fs" | |
* | ||
* - name: Danger | ||
* run: danger-swift ci | ||
* env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
* env: | ||
* GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
* ``` | ||
* | ||
* If don't want to include the dependency then you can use Danger Swift via an action. | ||
|
@@ -149,7 +151,8 @@ import { readFileSync, existsSync } from "fs" | |
* ```yml | ||
* - name: Danger JS | ||
* uses: danger/[email protected] | ||
* env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
* env: | ||
* GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
* ``` | ||
* | ||
* [GitHub automatically creates a `GITHUB_TOKEN` secret to use in your workflow](https://help.github.com/en/actions/configuring-and-managing-workflows/authenticating-with-the-github_token). | ||
|