From bc2d830623ab758779d0ad7ffb87a208ad4b8731 Mon Sep 17 00:00:00 2001 From: lerer Date: Wed, 24 Sep 2025 08:52:01 +1000 Subject: [PATCH] Add comment to use main branch --- README.md | 5 +++++ dist/index.js | 1 + src/main.ts | 3 +++ 3 files changed, 9 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..9047c05 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Feature Branch (Merged) + +The code in this branch has been merged into the `main` branch. This branch is no longer active and will not be updated. + +**Please refer to the `main` branch for the latest code and updates.** \ No newline at end of file diff --git a/dist/index.js b/dist/index.js index af40cc4..616a944 100644 --- a/dist/index.js +++ b/dist/index.js @@ -82289,6 +82289,7 @@ const pipelineResultsService = __importStar(__nccwpck_require__(27903)); const policyResultsService = __importStar(__nccwpck_require__(60834)); const applicationService = __importStar(__nccwpck_require__(62302)); async function run() { + core.warning('The code in this branch has been merged into the `main` branch and is no longer active. Please refer to the `main` branch for the latest code and updates.'); const inputs = (0, inputs_1.parseInputs)(core.getInput); switch (inputs.action) { case 'getPolicyNameByProfileName': diff --git a/src/main.ts b/src/main.ts index 1162556..9647e97 100644 --- a/src/main.ts +++ b/src/main.ts @@ -10,6 +10,9 @@ import * as applicationService from './services/application-service'; */ export async function run(): Promise { + core.warning( + 'The code in this branch has been merged into the `main` branch and is no longer active. Please refer to the `main` branch for the latest code and updates.', + ); const inputs = parseInputs(core.getInput); switch (inputs.action) {