{"id":16497171,"url":"https://github.com/guillaumefalourd/open-issue-action","last_synced_at":"2026-06-07T01:31:38.693Z","repository":{"id":65157737,"uuid":"366142734","full_name":"GuillaumeFalourd/open-issue-action","owner":"GuillaumeFalourd","description":"Github Action to open a new issue on ANY Github repository that the Personal Access Token (PAT) has access to 🤖","archived":false,"fork":false,"pushed_at":"2021-08-31T15:18:49.000Z","size":32,"stargazers_count":2,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-24T16:08:43.442Z","etag":null,"topics":["automation","github","github-action","issues","personal-access-token","useful","workflows"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GuillaumeFalourd.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-05-10T18:40:02.000Z","updated_at":"2022-04-11T19:38:50.000Z","dependencies_parsed_at":"2023-01-13T15:43:11.941Z","dependency_job_id":null,"html_url":"https://github.com/GuillaumeFalourd/open-issue-action","commit_stats":{"total_commits":30,"total_committers":2,"mean_commits":15.0,"dds":"0.033333333333333326","last_synced_commit":"0f009c4d9dd3902c95773cf4ade4dadf8cf6b6d7"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuillaumeFalourd%2Fopen-issue-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuillaumeFalourd%2Fopen-issue-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuillaumeFalourd%2Fopen-issue-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuillaumeFalourd%2Fopen-issue-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GuillaumeFalourd","download_url":"https://codeload.github.com/GuillaumeFalourd/open-issue-action/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241367935,"owners_count":19951448,"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","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":["automation","github","github-action","issues","personal-access-token","useful","workflows"],"created_at":"2024-10-11T14:38:37.852Z","updated_at":"2026-06-07T01:31:38.665Z","avatar_url":"https://github.com/GuillaumeFalourd.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Open Issue Action\n\n[![Public workflows that use this action.](https://img.shields.io/endpoint?url=https%3A%2F%2Fapi-endbug.vercel.app%2Fapi%2Fgithub-actions%2Fused-by%3Faction%3DGuillaumeFalourd%2Fopen-issue-action%26badge%3Dtrue)](https://github.com/search?o=desc\u0026q=GuillaumeFalourd+open-issue-action+path%3A.github%2Fworkflows+language%3AYAML\u0026s=\u0026type=Code) \n\n[![Open Issue Workflow](https://github.com/GuillaumeFalourd/open-issue-action/actions/workflows/open-issue.yml/badge.svg)](https://github.com/GuillaumeFalourd/open-issue-action/actions/workflows/open-issue.yml)\n\n![Title](https://user-images.githubusercontent.com/22433243/117715515-c146ca80-b1ae-11eb-9fe9-de3cc7f631ff.png)\n\nGithub Action to open a new issue on **ANY** Github repository that the [**PAT**](https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token) has access to. 🤖\n\n## How to use this action?\n\n### Action inputs\n\nField | Mandatory | Observation\n------------ | ------------  | -------------\n**access-token** | YES | [How to create a PAT](https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token)\n**repo-owner** | YES | Ex: `octocat`\n**repo-name** | YES | Ex: `open-issue-action`\n**issue-title** | YES | Can use the context or customize\n**issue-body** | YES | Can use the context or customize\n**issue-labels** | NO | Labels **need to exist** on the new repository. \u003cbr/\u003e _Separated with coma `,` if more than one_\n**issue-assignees** | NO | Assignees **need to have access** to the new repositor. \u003cbr/\u003e _Separated with coma `,` if more than one_\n\n### Example\n\nUsing `if conditionnal` to open a new issue on **ANOTHER** repository when an issue with a specific label `documentation` is *opened* or *labeled* on the **CURRENT** repository.\n\n```bash\nname: Open Issue Workflow\n\non:\n  issues: \n    types: [opened, labeled]\n\njobs:\n  job:\n    runs-on: ubuntu-latest\n    steps:\n    - name: Open new ISSUE on GuillaumeFalourd/poc-github-actions repository\n      if: contains(github.event.label.name , 'documentation')\n      uses: GuillaumeFalourd/open-issue-action@v1\n      with:\n        access-token: ${{ secrets.ACCESS_TOKEN }}\n        repo-owner: GuillaumeFalourd\n        repo-name: poc-github-actions\n        issue-title: Custom title for new ISSUE\n        issue-body: Custom message for new ISSUE\n        issue-labels: bug # Not mandatory\n        issue-assignees: \u003cusername\u003e # Not mandatory\n\n```\n\n## How does it work?\n\nThis action will execute [this python automation](https://github.com/GuillaumeFalourd/formulas-github/blob/master/github/create/issue/src/formula/formula.py) to open a new ISSUE with the informed `title` and `body` on the informed repository.\n\n## Licensed\n\nThis repository uses the [Apache License 2.0](https://github.com/GuillaumeFalourd/aws-cliaction/blob/main/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguillaumefalourd%2Fopen-issue-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fguillaumefalourd%2Fopen-issue-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguillaumefalourd%2Fopen-issue-action/lists"}