{"id":21365046,"url":"https://github.com/altinn/altinn-platform","last_synced_at":"2026-05-28T10:01:00.255Z","repository":{"id":38349449,"uuid":"462043283","full_name":"Altinn/altinn-platform","owner":"Altinn","description":"Altinn Platform infrastructure","archived":false,"fork":false,"pushed_at":"2026-05-25T15:09:06.000Z","size":29742,"stargazers_count":9,"open_issues_count":190,"forks_count":7,"subscribers_count":20,"default_branch":"main","last_synced_at":"2026-05-25T17:11:06.366Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Altinn.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-02-21T21:51:01.000Z","updated_at":"2026-05-22T17:20:36.000Z","dependencies_parsed_at":"2023-02-12T00:45:49.124Z","dependency_job_id":"be254aa4-cb05-4771-84df-b07dd0a807d1","html_url":"https://github.com/Altinn/altinn-platform","commit_stats":null,"previous_names":[],"tags_count":270,"template":false,"template_full_name":null,"purl":"pkg:github/Altinn/altinn-platform","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Altinn%2Faltinn-platform","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Altinn%2Faltinn-platform/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Altinn%2Faltinn-platform/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Altinn%2Faltinn-platform/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Altinn","download_url":"https://codeload.github.com/Altinn/altinn-platform/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Altinn%2Faltinn-platform/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33603475,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-28T02:00:06.440Z","response_time":99,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-11-22T07:09:09.076Z","updated_at":"2026-05-28T10:01:00.203Z","avatar_url":"https://github.com/Altinn.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Altinn Platform\n\n## Altinn Products\nTo configure or add identity federation (GitHub to Azure), Azure IAM, and handle Terraform state for a product in Altinn, modify the `products.yaml` file and create a pull request.\n\n## Release Please\n\nWe have setup Release Please in our repo to automate and simplify the releasing of different artifacts.\n\nSince we have a monorepo we have opted to use the Manifest Driven release-please setup.\n\nThis setup consists of two files:\n* [.release-please-manifest.json](./.release-please-manifest.json) that contains the latest release version of all packages\n* [release-please-config.json](./release-please-config.json) that contains the configuration of all the packages handled by release-please\n\nFurther documentation about this can be found in the documentation for [Manifest Driven release-please](https://github.com/googleapis/release-please/blob/main/docs/manifest-releaser.md)\n\n### Post-Release Workflow Configuration\n\nWe have created our own logic to simplify the dispatching of pipelines after a release is created. This is a fairly simple github script and json file that we have implemented\n\nControl downstream actions after a release using `release-please-post-config.json`.\n\n#### Configuration\nMap release paths (using Regex) to workflows.\n\n**Note:** All matching patterns are executed. If a path matches multiple keys, all associated pipelines will be triggered.\n\n##### Configuration Example\n\n```json\n{\n  \"post-release-hooks\": {\n    // Example 1: Simple exact match, no inputs required\n    \"pkg/docs\": {\n      \"dispatch-pipelines\": [\n        {\n          \"filename\": \"deploy-docs.yaml\"\n        }\n      ]\n    },\n    // Example 2: Regex match (all packages under pkg/) with inputs\n    \"pkg/.*\": {\n      \"dispatch-pipelines\": [\n        {\n          \"filename\": \"post-release-workflow.yaml\",\n          \"inputs\": {\n            \"tag\": \"{{tag_name}}\",       // Dynamic variable substitution\n            \"url\": \"{{release_url}}\",\n            \"environment\": \"production\"  // Static value\n          }\n        }\n      ]\n    }\n  }\n}\n```\n\n#### Variable Substitution\nUse `{{variable_name}}` in `inputs`.\n\n| Variable | Description |\n|----------|-------------|\n| `tag_name` | The git tag (e.g., `v1.0.0`) |\n| `release_url` | Link to the release on GitHub |\n| `release_sha` | Commit SHA of the release |\n| `path` | Path of the released package (e.g., `pkg/one`) |\n\n#### Extending\nTo add more variables, update the `releaseData` object in `.github/workflows/release-please.yml`:\n\n```javascript\nconst releaseData = {\n  tag_name: release_info[`${path}--tag_name`],\n  // ... add new properties here\n};\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faltinn%2Faltinn-platform","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faltinn%2Faltinn-platform","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faltinn%2Faltinn-platform/lists"}