{"id":25969232,"url":"https://github.com/tyler36/backlog-linker","last_synced_at":"2025-08-22T06:36:52.964Z","repository":{"id":277316366,"uuid":"931989992","full_name":"tyler36/backlog-linker","owner":"tyler36","description":"This GitHub action replaces Backlog issue references with links when posted onto GitHub. ","archived":false,"fork":false,"pushed_at":"2025-08-18T00:37:02.000Z","size":753,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-18T02:27:52.618Z","etag":null,"topics":["backlog","github-action"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tyler36.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,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-02-13T07:22:32.000Z","updated_at":"2025-08-18T00:37:05.000Z","dependencies_parsed_at":"2025-06-10T00:27:04.535Z","dependency_job_id":"d26308ff-7fae-4f86-adf8-4f9b2b2af166","html_url":"https://github.com/tyler36/backlog-linker","commit_stats":null,"previous_names":["tyler36/backlog-linker"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/tyler36/backlog-linker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tyler36%2Fbacklog-linker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tyler36%2Fbacklog-linker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tyler36%2Fbacklog-linker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tyler36%2Fbacklog-linker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tyler36","download_url":"https://codeload.github.com/tyler36/backlog-linker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tyler36%2Fbacklog-linker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271598966,"owners_count":24787799,"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-22T02:00:08.480Z","response_time":65,"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":["backlog","github-action"],"created_at":"2025-03-04T22:47:14.647Z","updated_at":"2025-08-22T06:36:52.953Z","avatar_url":"https://github.com/tyler36.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Backlog-linker\n\n[![testing](https://github.com/tyler36/backlog-linker/actions/workflows/testing.yml/badge.svg)](https://github.com/tyler36/backlog-linker/actions/workflows/testing.yml)\n[![linting](https://github.com/tyler36/backlog-linker/actions/workflows/linting.yml/badge.svg)](https://github.com/tyler36/backlog-linker/actions/workflows/linting.yml)\n[![Dependabot Updates](https://github.com/tyler36/backlog-linker/actions/workflows/dependabot/dependabot-updates/badge.svg)](https://github.com/tyler36/backlog-linker/actions/workflows/dependabot/dependabot-updates)\n\n## Overview\n\nThis GitHub action replaces Backlog issue references with links when posted onto GitHub.\nGiven the following comment:\n\n`This fixes #issue-123.` becomes `This fixes [#issue-123](https://example.com/view/issue-123).`\n\n## Usage\n\nAdd a workflow to `.github/workflows` similar to the below example:\n\n```yml\non:\n  issue_comment:\n    types: [created, edited]\n\njobs:\n  comment-notes:\n    runs-on: ubuntu-latest\n    name: 'backlog-linker'\n    permissions:\n      contents: write\n      issues: write\n    steps:\n      # To use this repository's private action,\n      # you must check out the repository\n      - name: Checkout\n        uses: actions/checkout@v4\n      - name: Commit notes\n        uses: tyler36/backlog-linker\n        with:\n          github-token: ${{ secrets.GITHUB_TOKEN }}\n          backlog-url: ${{ secrets.BACKLOG_URL }}\n          backlog-project-id: ${{ secrets.BACKLOG_PROJECT_ID }}\n```\n\n### Configuration\n\nThis action requires configuration before usage.\nIt is recommended to add these as GitHub secrets to prevent their display in other actions or logs.\n\n| Name                 | Required | Description                      |\n| -------------------- | :------: | -------------------------------- |\n| `backlog-url`        |    ✅    | URL to Backlog workspace         |\n| `backlog-project-id` |    ✅    | Project ID keyword to search for |\n\n### backlog-url\n\nThis value should contain the URL to your Backlog workspace.\nIt will form the beginning of convert links and should include the protocol.\n\nFor example:\n\n- \u003chttps://example.backlog.com\u003e\n- \u003chttps://example.backlog.jp\u003e\n- \u003chttps://my-instance.backlog.com\u003e\n\n### backlog-project-id\n\nThis is the project ID used by backlog.\nThis action will search for link hints such as `#ISSUE-123` where:\n\n- Backlog Project ID is prefixed with a `#`, suffix with a `-` and followed by numbers.\n- The above is not already surrounded by `[]`.\n- Project ID is case insensitive.\n- Multiple IDs may be entered, seperated by `,`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftyler36%2Fbacklog-linker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftyler36%2Fbacklog-linker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftyler36%2Fbacklog-linker/lists"}