From 13923243f438457fbeae84bb8427816cdeac808c Mon Sep 17 00:00:00 2001 From: Hyro Date: Tue, 26 Jul 2022 07:29:31 +0200 Subject: [PATCH] chore(README): add github token --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index e4e966a..73fb18b 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ Set up your GitHub Actions workflow with a specific version of Bun. - uses: xhyrom/setup-bun@v0.1.3 with: bun-version: latest + github-token: ${{ secrets.GITHUB_TOKEN }} ``` ### Specific version @@ -19,6 +20,7 @@ Set up your GitHub Actions workflow with a specific version of Bun. - uses: xhyrom/setup-bun@v0.1.3 with: bun-version: "0.1.3" + github-token: ${{ secrets.GITHUB_TOKEN }} ``` ### Canary builds @@ -27,4 +29,5 @@ Set up your GitHub Actions workflow with a specific version of Bun. - uses: xhyrom/setup-bun@v0.1.3 with: bun-version: canary + github-token: ${{ secrets.GITHUB_TOKEN }} ```