{"id":14063087,"url":"https://github.com/EddieHubCommunity/gh-action-open-source-labels","last_synced_at":"2025-07-29T14:32:09.771Z","repository":{"id":42186725,"uuid":"353632169","full_name":"EddieHubCommunity/gh-action-open-source-labels","owner":"EddieHubCommunity","description":"Issue labels using Open Source labels standards","archived":true,"fork":false,"pushed_at":"2023-06-07T13:05:10.000Z","size":39,"stargazers_count":26,"open_issues_count":3,"forks_count":23,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-07-08T18:47:00.580Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/EddieHubCommunity.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null},"funding":{"github":["eddiejaoude"]}},"created_at":"2021-04-01T08:39:32.000Z","updated_at":"2025-05-03T18:10:04.000Z","dependencies_parsed_at":"2024-01-22T12:22:01.887Z","dependency_job_id":null,"html_url":"https://github.com/EddieHubCommunity/gh-action-open-source-labels","commit_stats":{"total_commits":62,"total_committers":11,"mean_commits":5.636363636363637,"dds":0.4193548387096774,"last_synced_commit":"b0521982db6e00c3ab68c84bc5d29b615c50fa4c"},"previous_names":[],"tags_count":17,"template":false,"template_full_name":"EddieHubCommunity/template","purl":"pkg:github/EddieHubCommunity/gh-action-open-source-labels","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EddieHubCommunity%2Fgh-action-open-source-labels","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EddieHubCommunity%2Fgh-action-open-source-labels/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EddieHubCommunity%2Fgh-action-open-source-labels/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EddieHubCommunity%2Fgh-action-open-source-labels/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EddieHubCommunity","download_url":"https://codeload.github.com/EddieHubCommunity/gh-action-open-source-labels/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EddieHubCommunity%2Fgh-action-open-source-labels/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267703057,"owners_count":24130463,"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-07-29T02:00:12.549Z","response_time":2574,"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-08-13T07:03:02.472Z","updated_at":"2025-07-29T14:32:09.464Z","avatar_url":"https://github.com/EddieHubCommunity.png","language":null,"funding_links":["https://github.com/sponsors/eddiejaoude"],"categories":["Others"],"sub_categories":[],"readme":"# Open Source issue labels generator\n\nA GitHub action that generates the labels you want (customizable name and color) in any repository, easy and efficient.\n\n![screenshot](https://user-images.githubusercontent.com/624760/113267767-9e331c00-92ce-11eb-8e47-efb02d3c7fa2.png)\n\n## Usage\n\nTo use this Action, you only need the yaml file below.\n\n```yaml\nname: Import open source standard labels\n\non:\n  push:\n    branches: [ main ]\n\njobs:\n  labels:\n\n    runs-on: ubuntu-latest\n\n    steps:\n    - uses: actions/setup-node@v2\n      with:\n        node-version: '14'\n    - uses: EddieHubCommunity/gh-action-open-source-labels@main\n      with:\n        github-token: ${{ secrets.GITHUB_TOKEN }}\n        owner-name: ${{ github.repository_owner }}\n        repository-name: ${{ github.event.repository.name }}\n        # force: true # optional to clear existing labels, default to true\n```\n\n## Label standards\n\n\u003e To facilitate the community in finding ways to contribute that match their experiences and skillsets, we have developed a comprehensive system for labelling issues and PRs. This is an introduction to this standard labelling scheme.\n\n\u003e Labels consist of three fields, viz. name, description and color. Label names should have a consistent format to aid both filtering within the github UI as well as scanning visually through the list. The following format is the most suited to this task (where ⎵ denotes a single space):\n\n```\n\u003cemoji\u003e⎵\u003ccategory\u003e:⎵\u003cname\u003e\n```\n\nUsing the label convention from https://opensource.creativecommons.org/contributing-code/repo-labels/\n\n## Contributing to this project\n\nTo add a new label, update the `labels.json` file and the GitHub Action will do the rest for everyone!\n\n```json\n[\n    {\n        \"name\": \"good first issue\",\n        \"color\": \"7f0799\"\n    },\n    {\n        \"name\": \"💬 talk: discussion\",\n        \"color\": \"f9bbe5\"\n    } \n]\n```\n\n\u003e This example shows two common ways to add a label. One without emoji and the other with emoji. The preferred way is using emojis at the beginning, but there are also some labels which are commonly used without emojis.\n\n## Socials\n\nJoin our Discord community [here](http://discord.eddiehub.org)   \nSubscribe our YouTube channel [here](https://www.youtube.com/user/eddiejaoude)\n\n## Our Pledge\n\nWe take participation in our community as a harassment-free experience for everyone and we pledge to act in ways to contribute to an open, welcoming, diverse and inclusive community.  \n\nIf you have experienced or been made aware of unacceptable behaviour, please remember that you can report this.  Read our [Code of Conduct](https://github.com/EddieHubCommunity/gh-action-open-source-labels/blob/main/CODE_OF_CONDUCT.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FEddieHubCommunity%2Fgh-action-open-source-labels","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FEddieHubCommunity%2Fgh-action-open-source-labels","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FEddieHubCommunity%2Fgh-action-open-source-labels/lists"}