{"id":21032483,"url":"https://github.com/majkinetor/redmine-bot","last_synced_at":"2025-10-14T20:15:09.289Z","repository":{"id":217329469,"uuid":"743591146","full_name":"majkinetor/redmine-bot","owner":"majkinetor","description":"Redmine bot in PowerShell","archived":false,"fork":false,"pushed_at":"2024-01-31T15:14:10.000Z","size":18,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-10T11:11:30.047Z","etag":null,"topics":["bot","redmine"],"latest_commit_sha":null,"homepage":"","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/majkinetor.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-01-15T15:03:12.000Z","updated_at":"2024-01-26T11:51:40.000Z","dependencies_parsed_at":"2024-01-31T17:09:11.957Z","dependency_job_id":null,"html_url":"https://github.com/majkinetor/redmine-bot","commit_stats":null,"previous_names":["majkinetor/redmine-bot"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/majkinetor/redmine-bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/majkinetor%2Fredmine-bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/majkinetor%2Fredmine-bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/majkinetor%2Fredmine-bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/majkinetor%2Fredmine-bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/majkinetor","download_url":"https://codeload.github.com/majkinetor/redmine-bot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/majkinetor%2Fredmine-bot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279021016,"owners_count":26086947,"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-10-14T02:00:06.444Z","response_time":60,"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":["bot","redmine"],"created_at":"2024-11-19T12:43:22.767Z","updated_at":"2025-10-14T20:15:09.271Z","avatar_url":"https://github.com/majkinetor.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Redmine bot\n\nThis is a bot that uses Redmine REST API to do specific tasks.\n\n## Usage\n\n1. Clone [mm-redmine](https://github.com/majkinetor/mm-redmine) and put it in a sibling directory or install in the system location\n1. Use an existing task or add new one in the [tasks](./tasks) folder\n1. Create trigger mechanism (scheduled task, email scanner, RSS feed etc.)\n\nMandatory configuration options:\n\n|   Parameter   |              Meaning              |    Type     |\n| ------------- | --------------------------------- | ----------- |\n| RedmineUserId | Id of the Redmine bot             | int         |\n| RedmineKey    | Key of the Redmine bot            | string      |\n| RedmineUrl    | URL of the Redmine server         | string      |\n| DateFormat    | Date format used in messages      | string      |\n| Task          | Array of tasks for bot to execute | HashTable[] |\n\n## Tasks\n\nTasks are configured in the appropriate `config.\u003cenvironment\u003e.ps1` file.\n\nAll tasks have the following parameters:\n\n| Parameter |                     Meaning                      |  Type  |\n| --------- | ------------------------------------------------ | ------ |\n| Name      | Name of the tasks to run                         | string |\n| Enabled   | Determines if task runs                          | bool   |\n| WhatIf    | Determines if task just reports what it would do | bool   |\n| TaskUid   | Unique identifier of the task                    | string |\n\nBot will ignore task with the following string anywhere in the issue description: `@\u003cRedmineUserLogin\u003e: ignore`\n\n### Reminder\n\nAdd an issue note when a ticket is inactive for more than the configured number of days.\n\n|   Parameter    |                                  Meaning                                   |   Type   |\n| -------------- | -------------------------------------------------------------------------- | -------- |\n| MaxIssues      | Maximum number of issues to process in one run                             | int      |\n| NoSpam         | Do not create another message if the last one belongs to the bot           | bool     |\n| CreatedAfter   | Limit task to the issues created after this ISO8601 date                   | datetime |\n| Projects       | Limit task to the given projects (identifiers)                             | string[] |\n| Trackers       | Limit task to the given trackers (names)                                   | string[] |\n| Statuses       | Limit task to the given statuses (names)                                   | string[] |\n| InactivityDays | Number of days of inactivity after which message is created                | int      |\n| Note           | Template for the message to be created after ticket is considered inactive | string   |\n\nMessage template supports the following variables: `$IssueId`, `$IssueUrl`, `$ProjectName`, `$Assignee`, `$UpdatedOn`, `$UpdatedBefore`\n\n### Terminator\n\nClose an issue with the note when a ticket is inactive for more than the configured number of days.\n\n|   Parameter    |                                  Meaning                                   |   Type   |\n| -------------- | -------------------------------------------------------------------------- | -------- |\n| MaxIssues      | Maximum number of issues to process in one run                             | int      |\n| CreatedAfter   | Limit task to the issues created after this ISO8601 date                   | datetime |\n| Projects       | Limit task to the given projects (identifiers)                             | string[] |\n| Trackers       | Limit task to the given trackers (names)                                   | string[] |\n| Statuses       | Limit task to the given statuses (names)                                   | string[] |\n| InactivityDays | Number of days of inactivity after which message is created                | int      |\n| Note           | Template for the message to be created after ticket is considered inactive | string   |\n\nMessage template supports the following variables: `$IssueId`, `$ProjectName`, `$Assignee`, `$UpdatedOn`, `$UpdatedBefore`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmajkinetor%2Fredmine-bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmajkinetor%2Fredmine-bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmajkinetor%2Fredmine-bot/lists"}