From af292c9341c62a8a5cdce4c7354d0f5145d6fc93 Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Thu, 15 Jan 2026 23:28:30 +0300 Subject: [PATCH] Add missing `token` property to GitHub Actions examples in README --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c52898a..69b08bb 100644 --- a/README.md +++ b/README.md @@ -202,6 +202,7 @@ jobs: - name: Update banner uses: TheDragonCode/github-preview-updater@v2 with: + token: ${{ secrets.GITHUB_TOKEN }} readme: 'README_foo.md' config: '.github/preview-updater-foo.yml' @@ -216,6 +217,7 @@ jobs: - name: Update banner uses: TheDragonCode/github-preview-updater@v2 with: + token: ${{ secrets.GITHUB_TOKEN }} readme: 'README.bar.md' config: '.github/preview-updater-bar.yml' ```