{"id":19490378,"url":"https://github.com/rstudio/issuetriager","last_synced_at":"2026-04-15T23:32:54.593Z","repository":{"id":66205532,"uuid":"547593385","full_name":"rstudio/issuetriager","owner":"rstudio","description":"R package and GitHub workflow action for triaging issues","archived":false,"fork":false,"pushed_at":"2022-10-08T04:34:37.000Z","size":372,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":17,"default_branch":"main","last_synced_at":"2025-05-15T07:41:54.054Z","etag":null,"topics":["actions"],"latest_commit_sha":null,"homepage":"https://rstudio.github.io/issuetriager/","language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rstudio.png","metadata":{"files":{"readme":"README.Rmd","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-10-08T00:19:40.000Z","updated_at":"2023-03-17T07:30:44.000Z","dependencies_parsed_at":"2023-03-10T23:43:38.312Z","dependency_job_id":null,"html_url":"https://github.com/rstudio/issuetriager","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/rstudio/issuetriager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rstudio%2Fissuetriager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rstudio%2Fissuetriager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rstudio%2Fissuetriager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rstudio%2Fissuetriager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rstudio","download_url":"https://codeload.github.com/rstudio/issuetriager/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rstudio%2Fissuetriager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31865067,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"ssl_error","status_checked_at":"2026-04-15T15:24:39.138Z","response_time":63,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["actions"],"created_at":"2024-11-10T21:12:41.410Z","updated_at":"2026-04-15T23:32:54.574Z","avatar_url":"https://github.com/rstudio.png","language":"R","funding_links":[],"categories":[],"sub_categories":[],"readme":"---\noutput: github_document\n---\n\n\u003c!-- README.md is generated from README.Rmd. Please edit that file --\u003e\n\n```{r, include = FALSE}\nknitr::opts_chunk$set(\n  collapse = TRUE,\n  comment = \"#\u003e\",\n  fig.path = \"man/figures/README-\",\n  out.width = \"100%\"\n)\n```\n\n# issuetriager GitHub Action\n\n\u003c!-- badges: start --\u003e\n![package test](https://github.com/rstudio/issuetriager/actions/workflows/check-standard.yml/badge.svg)\n![package test](https://github.com/rstudio/issuetriager/actions/workflows/render-rmarkdown.yml/badge.svg)\n\u003c!-- badges: end --\u003e\n\nThe goal of issuetriager is to streamline the triage process for projects that\nhave frequent issues reported on GitHub. Normal use is inside of a GitHub workflow\nthat is triggered to run when issues are opened, analyze the text, and use the\nresults for automatic labeling, closing, or notification about issues.\n\nThis action indicates whether the phrase was found within the text or not.\n\n## Inputs\n\n## `check-phrase`\n\n**Required** The phrase to search for in the issue body. Default `\"I'm stuck because of this issue.: True\"`.\n\n## `issue-body`\n\n**Required** The text body that you want to search for the phrase. Default `\"${{ github.event.issue.body }}\"`.\n\n## Outputs\n\n## `contains-phrase`\n\nWhether the check phrase was found\n\n## Example usage\n\n```\non:\n  issues:\n    types: [opened]\n\njobs:\n  triage:\n    runs-on: ubuntu-latest\n    name: A job to triage issues\n    steps:\n      - name: check the text\n        id: triage\n        uses: rstudio/issuetriager@v1\n        with:\n          check-phrase: 'this is a blocking issue'\n          issue-body: ${{ github.event.issue.body }}\n      # Use the output from the `triage` step\n      - name: Label the issue as blocking\n        run: echo \"The time was ${{ steps.hello.outputs.time }}\"\n        if: ${{ steps.triage.outputs.contains-phrase }}\n        uses: andymckay/labeler@master\n        with:\n          add-labels: \"blocking\"\n```\n\n## Development\n\nClone this repo from GitHub, and open the project in RStudio IDE.\n\n```\n# CTRL-SHIFT-L to load the package\n\n# SHIFT-CMD-T to run tests\n```\n\n## Code of Conduct\n\nPlease note that the issuetriager project is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/1/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.\n\n\n\u003c!-- \nGitHub Actions will re-render `README.Rmd` every time you push.\n--\u003e\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frstudio%2Fissuetriager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frstudio%2Fissuetriager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frstudio%2Fissuetriager/lists"}