{"id":38556615,"url":"https://github.com/localgod/minado","last_synced_at":"2026-01-18T07:52:16.005Z","repository":{"id":36987806,"uuid":"428987898","full_name":"localgod/minado","owner":"localgod","description":"Generating OpenApi specifications and API management policies from Azure Logic App Standard","archived":false,"fork":false,"pushed_at":"2025-07-01T08:25:52.000Z","size":2663,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-01T09:32:00.642Z","etag":null,"topics":["azure-api-management","azure-logic-apps","console-application","github-actions","openapi"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/localgod.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2021-11-17T09:44:27.000Z","updated_at":"2025-07-01T08:25:44.000Z","dependencies_parsed_at":"2023-02-16T02:16:03.431Z","dependency_job_id":"f1871f3f-49d2-451e-865d-9d33abefd0a9","html_url":"https://github.com/localgod/minado","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/localgod/minado","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/localgod%2Fminado","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/localgod%2Fminado/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/localgod%2Fminado/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/localgod%2Fminado/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/localgod","download_url":"https://codeload.github.com/localgod/minado/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/localgod%2Fminado/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28523041,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T23:53:28.710Z","status":"ssl_error","status_checked_at":"2026-01-17T23:52:20.131Z","response_time":85,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["azure-api-management","azure-logic-apps","console-application","github-actions","openapi"],"created_at":"2026-01-17T07:43:41.951Z","updated_at":"2026-01-18T07:52:15.989Z","avatar_url":"https://github.com/localgod.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Minado\n\nMinado is used for generating OpenApi specifications and Azure API Management policies from Azure Logic App Standard workflows. The tool requires arguments/env varibles to be set to be executed with the proper permissions.\n\nMinado has two modes:\n\n- Console mode\n- Action mode\n\n## Console mode\n\n### Required env variable\n\n- AZURE_CLIENT_ID\n- AZURE_TENANT_ID\n- AZURE_CLIENT_SECRET\n- AZURE_SUBSCRIPTION_ID\n\n### Example\n\n```bash\n$ node ./dist/Minado.mjs --help\n\nUsage: Minado [options]\n\nGenerate OpenApi specifications and Azure API Management policies from Azure Logic App Standard workflows.\n\nOptions:\n  --suffix \u003csuffix\u003e    api suffix (default: \"las\")\n  --version \u003cversion\u003e  api version (default: \"1.0.0\")\n  --title \u003ctitle\u003e      api title (default: \"Logic App Standard\")\n  --env \u003cenv\u003e          environment (default: \"dev\")\n  --source-rg \u003crg\u003e     name of resource group containing logic app\n  --source-app \u003capp\u003e   name of logic app\n  --target-rg \u003crg\u003e     name of resource group containing api manager\n  --gateway \u003cname\u003e     name of gateway\n  --api \u003cname\u003e         name of api\n  --keyvault \u003cname\u003e    keyvault name\n  -h, --help           display help for command\n\n$ node ./dist/Minado.mjs --source-rg rg-platform --source-app las-1-dev --target-rg rg-platform --gateway apim-group-dev --api las-1-dev --keyvault kv-bubf2njz1skn2aeqrvtb --suffix las-1-dev\n```\n\n## Action mode\n\n### Arguments\n\n| Argument     | Required | Description                                           |\n|--------------|----------|-------------------------------------------------------|\n| tenant       | ✓        | azure tenant id                                       |\n| clientId     | ✓        | azure client id                                       |\n| clientSecret | ✓        | azure client secret                                   |\n| sourcesub    | ✓        | azure source subscription id                          |\n| sourcerg     | ✓        | name of resource group containing logic app           |\n| sourceapp    | ✓        | name of logic app                                     |\n| targetsub    | ✓        | azure target subscription id                          |\n| targetrg     | ✓        | name of resource group containing api manager gateway |\n| gateway      | ✓        | name of gateway                                       |\n| keyvault     | ✓        | keyvault name                                         |\n| api          | ✓        | name of api                                           |\n| suffix       |          | api suffix                                            |\n| version      |          | api version                                           |\n| title        |          | api title                                             |\n| env          |          | api environment                                       |\n\n```yml\nname: 'example'\non:\n  push:\n    branches:    \n      - '**'\njobs:\n  test:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v3\n      - name: Generating OpenApi specifications and Azure API Management policies from Azure Logic App Standard workflows.\n        uses: 3ShapeInternal/Minado@master\n        with:\n          tenant: ${{ env.ARM_TENANT_ID }}\n          clientId: ${{ env.ARM_CLIENT_ID }}\n          clientSecret: ${{ env.ARM_CLIENT_SECRET }}\n          sourcesub: ${{ env.ARM_SUBSCRIPTION_ID }}\n          sourcerg: ${{ vars.ARM_RESOURCE_GROUP }}\n          sourceapp: ${{ vars.ARM_LOGICAPP_NAME }}\n          targetsub: 0df5caa6-afaf-432b-b246-e9335aa553d1\n          targetrg: rg1\n          gateway: apim-1\n          keyvault: kv-bubf2njz4tkn2aeqrvtb\n          api: sub\n          suffix: sub\n          version: 1.0.0\n          title: Subscription \n          env: ${{ github.event.inputs.environment }}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flocalgod%2Fminado","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flocalgod%2Fminado","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flocalgod%2Fminado/lists"}