From 85d1e33fd55debfdd8ea3cfa15d5edaa2a31a207 Mon Sep 17 00:00:00 2001 From: Grant Archibald <31553604+Grant-Archibald-MS@users.noreply.github.com> Date: Thu, 14 May 2026 14:25:12 -0700 Subject: [PATCH 1/2] Add auto-reply workflow for deprecated repository --- .github/workflows/auto-reply | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/auto-reply diff --git a/.github/workflows/auto-reply b/.github/workflows/auto-reply new file mode 100644 index 000000000..34943eecd --- /dev/null +++ b/.github/workflows/auto-reply @@ -0,0 +1,36 @@ +name: Auto Reply - Deprecated Repo + +on: + issues: + types: [opened] + +jobs: + auto-reply: + runs-on: ubuntu-latest + permissions: + issues: write + + steps: + - name: Auto respond to new issue + uses: actions/github-script@v7 + with: + script: | + const body = ` +👋 Thanks for your interest in the Power Platform CoE Starter Kit. + +⚠️ **This repository is no longer actively maintained.** +Its core capabilities have been incorporated into the [Power Platform admin center](https://review.learn.microsoft.com/en-us/power-platform/admin/admin-documentation). + +👉 Issues submitted here are **not actively reviewed or addressed**. + +🔒 If you believe you’ve identified a **security issue**, please report it via the [Microsoft Security Response Center](https://www.microsoft.com/msrc/faqs-report-an-issue). + +ℹ️ For additional context, see: #11034 + `; + + await github.rest.issues.createComment({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: context.issue.number, + body + }); From fdf71e93b5caa41a59ffcc66b1f9fb45a6c73c88 Mon Sep 17 00:00:00 2001 From: Grant Archibald <31553604+Grant-Archibald-MS@users.noreply.github.com> Date: Thu, 14 May 2026 14:26:44 -0700 Subject: [PATCH 2/2] Add condition to prevent auto-reply from bot --- .github/workflows/auto-reply | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/auto-reply b/.github/workflows/auto-reply index 34943eecd..538db72a1 100644 --- a/.github/workflows/auto-reply +++ b/.github/workflows/auto-reply @@ -6,6 +6,7 @@ on: jobs: auto-reply: + if: github.actor != 'github-actions[bot]' runs-on: ubuntu-latest permissions: issues: write