From 6d5b15d75b4777bc39f05bc99b932ffde8b8b67e Mon Sep 17 00:00:00 2001 From: Anders <6058745+ddabble@users.noreply.github.com> Date: Mon, 25 Sep 2023 17:53:03 +0200 Subject: [PATCH] Set required secrets as workflow parameters This makes it easier to see which secrets the workflow uses. --- .github/workflows/_reusable_add-content-to-project.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/_reusable_add-content-to-project.yml b/.github/workflows/_reusable_add-content-to-project.yml index 634f579b8..d93091a3c 100644 --- a/.github/workflows/_reusable_add-content-to-project.yml +++ b/.github/workflows/_reusable_add-content-to-project.yml @@ -33,6 +33,13 @@ on: description: "The name of one of the values of the project's (single select) 'Status' field, to set for the added project item" required: true type: string + secrets: + HACKERSPACE_BOT_APP_ID: + description: "The App ID of a GitHub organization app with read and write access to repository contents, issues and pull requests, and organization projects" + required: true + HACKERSPACE_BOT_APP_PEM: + description: "A private key for the app with ID HACKERSPACE_BOT_APP_ID" + required: true jobs: add_content: