From d3e5053091d02905587938dd990dd6780c16dbd6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 23 Dec 2025 19:52:35 +0000 Subject: [PATCH 1/3] Initial plan From b59dec4635ef3343f6ddd1eb653587b1f7285d17 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 23 Dec 2025 19:57:19 +0000 Subject: [PATCH 2/3] Add missing .github/app-manifest.yml file Co-authored-by: JustAGhosT <5531814+JustAGhosT@users.noreply.github.com> --- .github/app-manifest.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/app-manifest.yml diff --git a/.github/app-manifest.yml b/.github/app-manifest.yml new file mode 100644 index 0000000..9ccb649 --- /dev/null +++ b/.github/app-manifest.yml @@ -0,0 +1,27 @@ +# GitHub App Manifest for CodeFlow Engine +# This manifest defines the GitHub App configuration for automatic setup +# See: https://docs.github.com/en/apps/sharing-github-apps/registering-a-github-app-from-a-manifest + +name: CodeFlow Engine Setup +url: https://github.com/JustAGhosT/codeflow-engine +hook_attributes: + url: https://your-app.azurewebsites.net/api/github-app/webhook + active: true +redirect_url: https://your-app.azurewebsites.net/api/github-app/callback +description: Automated setup for CodeFlow Engine - GitHub Workflow Automation +public: false + +default_permissions: + # Repository permissions + actions: write + contents: read + metadata: read + secrets: write + workflows: write + +default_events: + - installation + - installation_repositories + - workflow_run + - push + - pull_request From 4d32228188f7208643238e240d59c605e8cbab43 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 23 Dec 2025 20:00:27 +0000 Subject: [PATCH 3/3] Add clarifying comment about placeholder URLs in app-manifest.yml Co-authored-by: JustAGhosT <5531814+JustAGhosT@users.noreply.github.com> --- .github/app-manifest.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/app-manifest.yml b/.github/app-manifest.yml index 9ccb649..a040314 100644 --- a/.github/app-manifest.yml +++ b/.github/app-manifest.yml @@ -1,6 +1,9 @@ # GitHub App Manifest for CodeFlow Engine # This manifest defines the GitHub App configuration for automatic setup # See: https://docs.github.com/en/apps/sharing-github-apps/registering-a-github-app-from-a-manifest +# +# NOTE: Before creating your GitHub App, replace 'your-app.azurewebsites.net' +# with your actual deployment URL in the webhook and callback URLs below. name: CodeFlow Engine Setup url: https://github.com/JustAGhosT/codeflow-engine