{"id":13561109,"url":"https://github.com/dacbd/create-issue-action","last_synced_at":"2025-06-10T23:05:43.744Z","repository":{"id":40574427,"uuid":"408534733","full_name":"dacbd/create-issue-action","owner":"dacbd","description":"Another create an issue on GitHub action that strives to be as simple as possible... (The 10,000 GitHub Action on the Marketplace)","archived":false,"fork":false,"pushed_at":"2024-04-26T02:40:31.000Z","size":78,"stargazers_count":48,"open_issues_count":1,"forks_count":4,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-06-07T02:39:54.185Z","etag":null,"topics":["action","actions","ci-cd","github","github-action","github-actions","issue-management","issues"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/dacbd.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,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2021-09-20T17:17:59.000Z","updated_at":"2025-04-15T20:59:01.000Z","dependencies_parsed_at":"2024-04-26T03:25:18.657Z","dependency_job_id":"4083ba8f-c596-4c80-90c3-013ec8ba4e65","html_url":"https://github.com/dacbd/create-issue-action","commit_stats":{"total_commits":28,"total_committers":1,"mean_commits":28.0,"dds":0.0,"last_synced_commit":"ba4d1c45cccf9c483f2720cefb40e437f0ee6f7d"},"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dacbd%2Fcreate-issue-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dacbd%2Fcreate-issue-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dacbd%2Fcreate-issue-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dacbd%2Fcreate-issue-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dacbd","download_url":"https://codeload.github.com/dacbd/create-issue-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dacbd%2Fcreate-issue-action/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259166901,"owners_count":22815587,"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":["action","actions","ci-cd","github","github-action","github-actions","issue-management","issues"],"created_at":"2024-08-01T13:00:52.597Z","updated_at":"2025-06-10T23:05:43.717Z","avatar_url":"https://github.com/dacbd.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"# dacbd/create-issue-action@main\n\nThe #1 simple and awesome create-issue action on GitHub. 🌟\n\nBasically a converter that takes your yaml entry and connects it to the rest endpoint to create an issue on GitHub.\n\n## Quick Start (or [jump to advanced](https://github.com/dacbd/create-issue-action#generate-advanced-report)):\n\n```yml\nsteps:\n  - uses: actions/checkout@v4\n  - name: create an issue\n    uses: dacbd/create-issue-action@main\n    with:\n      token: ${{ github.token }}\n      title: Simple test issue\n      body: my new issue\n```\n\n## Configure\n\n### Inputs (through `with:`)\n\n| Option  | Default Value  | Notes  |\n| ------------ | ------------ | ------------ |\n| token      | github.token / `required`  | Use `${{ github.token }}` (same as `${{secrets.GITHUB_TOKEN}}`) or create a PAT stored in the secrets store.   |\n| owner      | github.context.repo.owner  | The owner of the repo to make the issue on. Implied from the context of the running action.  |\n| repo       | github.context.repo.repo   | The repo to make the issue on. Implied from the context of the running action.  |\n| title      | `required`                 |   |\n| body       |                            |   |\n| milestone  |                            |   |\n| labels     |                            | A comma seperated list of labels  |\n| assignees  |                            | A comma seperated list of GitHub usernames to assign the issue to  |\n\n### Outputs\n\n| output | value |\n| ------ | ----- |\n| json | [See Response](https://docs.github.com/en/rest/issues/issues#create-an-issue) |\n| html_url | the issue's web url |\n| number | the issue's number |\n\n## Usage\n\n\u003e [!NOTE]\n\u003e Limited testing has been done, and only on `ubuntu-latest`.\n\u003e We welcome tester volunteers!\n\n### Generate Advanced Report\n\n```yml\nname: Your Awesome Workflow\n...\n\njobs:\n  job-that-might-fail:\n    ...\n\n  create-issue-if-job-fails:\n    needs: job-that-might-fail\n    runs-on: ubuntu-latest\n    if: always() \u0026\u0026 needs.job-that-might-fail.result == 'failure'\n    steps:\n      - name: Checkout Code\n        uses: actions/checkout@v4\n    \n      - name: Create Issue\n        uses: dacbd/create-issue-action@main\n        with:\n          token: ${{ github.token }}\n          title: |\n            [${{ github.workflow }}] failed during [${{ github.event_name }}]\n\n          # Auto-assign person who triggered the failure.\n          assignees: ${{ github.actor }},${{ github.triggering_actor }}\n          labels: CICD\n          body: |\n            ## Failure Report:\n            \n            \u003e [!IMPORTANT]\n            \u003e Details on failed run: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}\n    \n            - Author: @${{ github.triggering_actor }}\n            - Branch: `${{ github.ref }}`\n            - Commit: ${{ github.sha }}\n            - Workflow Path: `${{ github.workflow_ref }}`\n    \n            - [ ] **Task**: Review failed run, fix the issue(s), and re-run until successful.\n    \n            \u003e This issue was created automatically by GitHub, \n            \u003e through `dacbd/create-issue-action@main` action\n            \u003e and KemingHe's contribution.\n            \u003e **DO NOT** close this issue until resolved.\n```\n\n### Using outputs\n\n```yml\n...\nsteps:\n  - uses: actions/checkout@v4\n  - uses: dacbd/create-issue-action@main\n    id: new-issue\n    with:\n      token: ${{ github.token }}\n      title: Simple test issue\n      body: my new issue\n  - run: |\n      echo \"${{ steps.new-issue.outputs.json }}\" | jq\n      echo \"${{ steps.new-issue.outputs.json }}\" | jq .state\n      echo \"${{ steps.new-issue.outputs.json }}\" | jq .labels[].name\n```\n\n### Transpose issues to a private repo:\n\n```yml\nname: transpose issue\n  issues:\n    types: [labeled]\njob:\n  transpose:\n    runs-on: ubuntu-latest\n    if: contains(github.event.issue.labels.*.name, 'backend')\n    steps:\n      - name: Copy Issue\n        uses: dacbd/create-issue-action@main\n        with:\n          token: ${{ secrets.PAT }}\n          org: octo-org\n          repo: private-backend-service\n          title: ${{ github.event.issue.title }}\n          body: |\n            Closes: ${{ github.event.issue.html_url }}\n            # Body\n            ${{ github.event.issue.body }}\n```\n\n## Issues \u0026 debugging\n\nIf you encounter issues with `dacbd/create-issue-action@main`, feel free to create an issue or a PR, happy to take improvements or requests.\n\n\u003e [!TIP]\n\u003e - Issue shortcut: https://github.com/dacbd/create-issue-action/issues/new\n\u003e - More verbose logging can be enabled via GitHub Actions feature: [`ACTIONS_STEP_DEBUG`](https://docs.github.com/en/actions/monitoring-and-troubleshooting-workflows/enabling-debug-logging#enabling-step-debug-logging)\n\n## Contributors\n\n\u003ca href=\"https://github.com/dacbd/create-issue-action/graphs/contributors\"\u003e\n  \u003cimg src=\"https://contrib.rocks/image?repo=dacbd/create-issue-action\" /\u003e\n\u003c/a\u003e\n\nMade with [contrib.rocks](https://contrib.rocks).\n\n## Community Activities\n\nProposed to auto-generate repo activity report via https://repobeats.axiom.co/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdacbd%2Fcreate-issue-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdacbd%2Fcreate-issue-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdacbd%2Fcreate-issue-action/lists"}