From a8a36ced961a2e0214daf3d93d5913eb4d10fda3 Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Fri, 30 May 2025 12:33:15 -0700 Subject: [PATCH] fix mistake in FAQ (#100) --- FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FAQ.md b/FAQ.md index c797fc4..d43c99a 100644 --- a/FAQ.md +++ b/FAQ.md @@ -6,7 +6,7 @@ This FAQ addresses common questions and gotchas when using the Claude Code GitHu ### Why doesn't tagging @claude from my automated workflow work? -The `github-actions` user (and other GitHub Apps/bots) cannot trigger subsequent GitHub Actions workflows. This is a GitHub security feature to prevent infinite loops. To make this work, you need to use a Personal Access Token (PAT) instead, which will act as a regular user. When posting a comment on an issue or PR from your workflow, use your PAT instead of the `GITHUB_TOKEN` generated in your workflow. +The `github-actions` user cannot trigger subsequent GitHub Actions workflows. This is a GitHub security feature to prevent infinite loops. To make this work, you need to use a Personal Access Token (PAT) instead, which will act as a regular user, or use a separate app token of your own. When posting a comment on an issue or PR from your workflow, use your PAT instead of the `GITHUB_TOKEN` generated in your workflow. ### Why does Claude say I don't have permission to trigger it?