{"id":28386185,"url":"https://github.com/bitnami/support","last_synced_at":"2026-02-09T07:08:24.141Z","repository":{"id":208832888,"uuid":"716566832","full_name":"bitnami/support","owner":"bitnami","description":"Support dashboards and common workflows","archived":false,"fork":false,"pushed_at":"2025-07-19T05:08:15.000Z","size":222,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":15,"default_branch":"main","last_synced_at":"2025-07-19T10:32:08.948Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":false,"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/bitnami.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":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-11-09T12:07:50.000Z","updated_at":"2025-07-19T05:08:19.000Z","dependencies_parsed_at":"2023-12-18T17:05:35.898Z","dependency_job_id":"e321aa28-0b46-42b6-a2ba-9f09de259229","html_url":"https://github.com/bitnami/support","commit_stats":null,"previous_names":["bitnami/support"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bitnami/support","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitnami%2Fsupport","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitnami%2Fsupport/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitnami%2Fsupport/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitnami%2Fsupport/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bitnami","download_url":"https://codeload.github.com/bitnami/support/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitnami%2Fsupport/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271035378,"owners_count":24688396,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-18T02:00:08.743Z","response_time":89,"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":"2025-05-30T13:11:30.191Z","updated_at":"2026-02-09T07:08:24.135Z","avatar_url":"https://github.com/bitnami.png","language":null,"funding_links":[],"categories":["Others"],"sub_categories":[],"readme":"# Bitnami support\n\nThis repository contains common workflows reusable from other repositories in the organization. Initially, most of these workflows have been created to manage the lifecycle of our support tasks.\n\nThe repository contains two types of workflows:\n* Reusable workflows under `.github/workflows`\n* Synced workflows under `workflows`\n\n## Reusable workflows\n\nThese workflows are and must be, under the `.github/workflows` folder due to GitHub restrictions. These files were extracted from other repositories and they were created for specific events, for that reason we tried to follow this convention `\u003cwebhook\u003e-\u003cactivity-type\u003e` ([About events that trigger workflows](https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#about-events-that-trigger-workflows)) to name them. The main goal of these workflows is to manage the [Bitnami Project support board](https://github.com/orgs/bitnami/projects/4)\n\n* [`comment-created.yml`](.github/workflows/comment-created.yml): Moves cards based on issue/pr comments. Also, it adds the label `review-required` if the comment was added on automated PR by bitnami-bot.\n* [`item-closed.yml`](.github/workflows/item-closed.yml): Sends cards to the Solved column and adds the `solved` label.\n* [`item-labeled.yml`](.github/workflows/item-labeled.yml): Moves cards according to its labels. Also, it reassigns tasks if it is needed, for instance, when we are labeling with `in-progress`.\n* [`item-opened.yml`](.github/workflows/item-opened.yml): Creates the item card, puts it into the Triage column, and assigns it to a Bitnami Team member.\n* [`pr-review-requested-sync.yml`](.github/workflows/pr-review-requested-sync.yml): Moves the cards when a review is requested.\n\nThe [`.env` file](.env) plays an important role here. It has the following information used by previous workflows:\n* BITNAMI_TEAM. Members of Bitnami Team. [Daily synced](.github/workflows/sync-teams.yml) with the [GitHub Bitnami Support Team](https://github.com/orgs/bitnami/teams/support)\n* LABEL_MAPPING. All labels used by the workflows, the column associated, and the label to be removed when the label is set. The content of this variable is an array with that information for each label in JSON format, for example:\n```json\n\"triage\": {\n  \"column\": \"Triage\",\n  \"assign-to-team-member\": true,\n  \"remove-previous-assignees\": false,\n  \"labels-to-remove\": [\n    \"in-progress\",\n    \"on-hold\",\n    \"solved\"\n  ]\n}\n```\n* REPO_ASSIGNMENT. Each repository managed by these workflows could have its assignment, for instance, charts and containers have their teams to manage the support tasks. It contains triage and support assignments for each repository and a default one if the repository doesn't have any specific assignee.\n```json\n{\n  \"charts\": {\n    \"triage-teams\": \"charts-triage\",\n    \"support-teams\": \"charts-support\"\n  },\n  \"containers\": {\n    \"triage-teams\": \"containers-triage\",\n    \"support-teams\": \"containers-support\"\n  },\n  \"vms\": {\n    \"triage-teams\": \"vms-triage\",\n    \"support-teams\": \"vms-support\"\n  },\n  \"default\": {\n    \"triage-assignees\": \"fmulero\",\n    \"support-assignees\": \"fmulero\"\n  }\n}\n```\n\n## Synced workflows\n\nThese workflows are located in `/workflows` and they are synced with the repositories configured in the [sync.yml](.github/sync.yml) file. Any change on these files will create a PR in those repositories. The main purpose of these files is to link the repository events with the reusable workflows described above.\n\n## Migration workflow\n\nThis workflow copies existing cards from a repository Project (Classic) board into the new organization Project (ProjectV2) board, in our case, we will use the [Bitnami Support board](https://github.com/orgs/bitnami/projects/4/views/1). To use it we only need to create a workflow like this one in our repository:\n\n```yaml\n# Copyright Broadcom, Inc. All Rights Reserved.\n# SPDX-License-Identifier: APACHE-2.0\n\nname: '[Support] Cards migration'\non: [ workflow_dispatch ]\njobs:\n  call-migration-workflow:\n    uses: bitnami/support/.github/workflows/migrate-reusable.yml@main\n    with:\n      organization: bitnami\n      legacy_project_board_name: Support\n      new_project_number: 4\n      repo: ${{ github.event.repository.name }}\n    secrets:\n      # This token should have access to both projects and at least read:project permissions\n      token: GITHUB_TOKEN\n```\n\n### How it works\n\nThe hard work is done by this [piece of code](.github/scripts/migrate.sh) but in general lines the process is easy:\n\n1. Retrieve information about projects.\n2. Loop over each Project (classic) column.\n3. Get the cards from each column.\n4. Create new cards in the new Project.\n5. Move each new card to the right column.\n\nNOTES:\n* The process will migrate all cards in one execution.\n* If you face any error you can trigger the workflow again, no duplications should occur in the target Project.\n* If you have a significant number of cards you could reach GitHub thresholds, in that case, you should remove/archive previously migrated cards in the source Project (classic) to reduce the number of requests.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbitnami%2Fsupport","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbitnami%2Fsupport","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbitnami%2Fsupport/lists"}