From a8296c2c88c8dc1d63c9377fe9d64f6dc3e3de09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Mrzyg=C5=82osz?= Date: Thu, 12 Sep 2024 22:04:46 +0200 Subject: [PATCH] 403 potential error-related comment (#1393) --- .../recipes/capture-notes-with-shortcuts-and-github-actions.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/user/recipes/capture-notes-with-shortcuts-and-github-actions.md b/docs/user/recipes/capture-notes-with-shortcuts-and-github-actions.md index f66fd2e91..ff49fbca8 100644 --- a/docs/user/recipes/capture-notes-with-shortcuts-and-github-actions.md +++ b/docs/user/recipes/capture-notes-with-shortcuts-and-github-actions.md @@ -29,6 +29,9 @@ on: jobs: store_data: runs-on: ubuntu-latest + # If you encounter a 403 error from a workflow run, try uncommenting the following 2 lines (taken from: https://stackoverflow.com/questions/75880266/cant-make-push-on-a-repo-with-github-actions accepted answer) + # permissions: + # contents: write steps: - uses: actions/checkout@master - uses: anglinb/foam-capture-action@main