From 854e2de9396304899dbe03bf9995fd73533190d1 Mon Sep 17 00:00:00 2001 From: Thanh Nguyen Date: Mon, 3 Jun 2024 17:37:23 -0400 Subject: [PATCH] Set allow_forks to false by default (#290) --- README.md | 6 +++--- action.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4d8d9483..7c3d6ae4 100644 --- a/README.md +++ b/README.md @@ -75,9 +75,9 @@ Let's suppose you have a workflow with a job in it that at the end uploads an ar # "fail", "warn", "ignore" # default fail if_no_artifact_found: fail - # Optional, ignore forks when searching for artifacts - # default true - allow_forks: false + # Optional, include forks when searching for artifacts + # default false + allow_forks: true ``` ## Troubleshooting diff --git a/action.yml b/action.yml index 973f9393..e6994360 100644 --- a/action.yml +++ b/action.yml @@ -65,7 +65,7 @@ inputs: allow_forks: description: Allow forks required: false - default: true + default: false check_artifacts: description: Check workflow run whether it has an artifact required: false