github-project-automation


Namegithub-project-automation JSON
Version 1.1.0 PyPI version JSON
download
home_pagehttps://github.com/khulansot/github-project-automation
SummaryGitHub automatic project manager tool
upload_time2024-05-23 10:24:30
maintainerNone
docs_urlNone
authorKhulnaSoft Ltd
requires_python>=3.7
licenseMIT
keywords github project manager github-project-automation project manage manager
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![Python package](https://github.com/khulansot/github-project-automation/workflows/Python%20package/badge.svg?branch=master) [![Coverage Status](https://coveralls.io/repos/github/khulnasoft/github-project-automation/badge.svg?branch=master)](https://coveralls.io/github/khulnasoft/github-project-automation?branch=master)

# github-project-automation
This tool will help you maintain and organize your GitHub project using an automation tool.

## Use case
In case you work with GitHub projects, and maintain a board for your project this tool is for you.
As we offer a functionality of managing your board in GitHub project boards.
This is by searching for the issues or pull request you wish to include in the board (By a set of filter you provide) and placing them in the right place in your board for you - both in the correct column and the correct place within the column.

The supported functionality is:
* Adding new issues or pull requests to your board.
* Moving issues or pull requests to the correct column of your project, with the priority in mind.
* Sorting your issues or pull requests within your existing columns by their priorities and creation times.
* Removing issues or pull requests that fail to meet your filters.
___
In order to configure github-project-automation you will need to create an `.ini` file, here is an example:
```buildoutcfg
[General]
closed_issues_column = Done
merged_pull_requests_column = Merged
project_owner = khulnasoft
repository_name = test
project_number = 1
priority_list = Critical,High,Medium,Low
filter_labels=bug
must_have_labels=test
cant_have_labels=not test
column_names = Queue,In progress,Review in progress,Waiting for Docs
column_rule_desc_order = Queue,Waiting for Docs,Review in progress,In progress

[Actions]
remove
add
move

[Queue]
issue.assignees = false

[In progress]
issue.assignees = true
pull_request.assignees = true

[Review in progress]
issue.assignees = true
issue.pull_request = true
issue.pull_request.review_requested = true
pull_request.review_requested = true

[Waiting for Docs]
issue.assignees = true
issue.pull_request = true
issue.pull_request.review_requested = true
issue.pull_request.review_completed = true
issue.pull_request.assignees = khulnasoft

```
While the General and Actions sections must be in the `.ini` the rest of the sections are dynamic, and each represents the rules for each of your columns.
The keys listed in the column section are the attributes of the classes which represent the issue or pull request you are working on. For a more detailed explanation please click [here](https://github.com/khulansot/github-project-automation/blob/master/docs/ini_file.md)


### GitHub Actions
In order to use this in a github action please follow this [documentation](https://github.com/khulansot/github-project-automation/blob/master/docs/ini_file.md).

___
### Usage
There are three options to run the tool:
1. Configure an `.ini` file like described above and then using the `github-project-automation manage -c <path to ini>` command or the `wehbhook-manage` command which is used for events.
2. Import the code and create some more custom rules for your self, like importing issues from another board(FYI this will be added to the tool as well).
3. GitHub actions - In order to use this in a github action please follow this [documentation](https://github.com/khulansot/github-project-automation/blob/master/docs/GitHub_Action_usage.md).

#### Token
In any solution you will have to set an envioroonment variable `GITHUB_TOKEN` which is the token you will generate in order for the tool to connect to your GitHub project.
Although we do offer the option to pass that along with your client object while taking the API option(Usage case number 2).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/khulansot/github-project-automation",
    "name": "github-project-automation",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "GitHub, Project, Manager, github-project-automation, project, manage, manager",
    "author": "KhulnaSoft Ltd",
    "author_email": "info@khulnasoft.com",
    "download_url": "https://files.pythonhosted.org/packages/c7/3d/dcebbe97a57b4ca79d9aa7f777998620dba63d4e8e9e5cb1d0baba545d2b/github_project_automation-1.1.0.tar.gz",
    "platform": null,
    "description": "![Python package](https://github.com/khulansot/github-project-automation/workflows/Python%20package/badge.svg?branch=master) [![Coverage Status](https://coveralls.io/repos/github/khulnasoft/github-project-automation/badge.svg?branch=master)](https://coveralls.io/github/khulnasoft/github-project-automation?branch=master)\n\n# github-project-automation\nThis tool will help you maintain and organize your GitHub project using an automation tool.\n\n## Use case\nIn case you work with GitHub projects, and maintain a board for your project this tool is for you.\nAs we offer a functionality of managing your board in GitHub project boards.\nThis is by searching for the issues or pull request you wish to include in the board (By a set of filter you provide) and placing them in the right place in your board for you - both in the correct column and the correct place within the column.\n\nThe supported functionality is:\n* Adding new issues or pull requests to your board.\n* Moving issues or pull requests to the correct column of your project, with the priority in mind.\n* Sorting your issues or pull requests within your existing columns by their priorities and creation times.\n* Removing issues or pull requests that fail to meet your filters.\n___\nIn order to configure github-project-automation you will need to create an `.ini` file, here is an example:\n```buildoutcfg\n[General]\nclosed_issues_column = Done\nmerged_pull_requests_column = Merged\nproject_owner = khulnasoft\nrepository_name = test\nproject_number = 1\npriority_list = Critical,High,Medium,Low\nfilter_labels=bug\nmust_have_labels=test\ncant_have_labels=not test\ncolumn_names = Queue,In progress,Review in progress,Waiting for Docs\ncolumn_rule_desc_order = Queue,Waiting for Docs,Review in progress,In progress\n\n[Actions]\nremove\nadd\nmove\n\n[Queue]\nissue.assignees = false\n\n[In progress]\nissue.assignees = true\npull_request.assignees = true\n\n[Review in progress]\nissue.assignees = true\nissue.pull_request = true\nissue.pull_request.review_requested = true\npull_request.review_requested = true\n\n[Waiting for Docs]\nissue.assignees = true\nissue.pull_request = true\nissue.pull_request.review_requested = true\nissue.pull_request.review_completed = true\nissue.pull_request.assignees = khulnasoft\n\n```\nWhile the General and Actions sections must be in the `.ini` the rest of the sections are dynamic, and each represents the rules for each of your columns.\nThe keys listed in the column section are the attributes of the classes which represent the issue or pull request you are working on. For a more detailed explanation please click [here](https://github.com/khulansot/github-project-automation/blob/master/docs/ini_file.md)\n\n\n### GitHub Actions\nIn order to use this in a github action please follow this [documentation](https://github.com/khulansot/github-project-automation/blob/master/docs/ini_file.md).\n\n___\n### Usage\nThere are three options to run the tool:\n1. Configure an `.ini` file like described above and then using the `github-project-automation manage -c <path to ini>` command or the `wehbhook-manage` command which is used for events.\n2. Import the code and create some more custom rules for your self, like importing issues from another board(FYI this will be added to the tool as well).\n3. GitHub actions - In order to use this in a github action please follow this [documentation](https://github.com/khulansot/github-project-automation/blob/master/docs/GitHub_Action_usage.md).\n\n#### Token\nIn any solution you will have to set an envioroonment variable `GITHUB_TOKEN` which is the token you will generate in order for the tool to connect to your GitHub project.\nAlthough we do offer the option to pass that along with your client object while taking the API option(Usage case number 2).\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "GitHub automatic project manager tool",
    "version": "1.1.0",
    "project_urls": {
        "Homepage": "https://github.com/khulansot/github-project-automation"
    },
    "split_keywords": [
        "github",
        " project",
        " manager",
        " github-project-automation",
        " project",
        " manage",
        " manager"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "269e00dd01e330f8c2467298048a9a3e7a2a2e476b59e3c5eba59ca4c487547b",
                "md5": "54144803e309b57d3d239ade0f4fda51",
                "sha256": "f027d64f248eb3026d5d6087475fd8a9b813e244df57ce516d64a1901c9a3c56"
            },
            "downloads": -1,
            "filename": "github_project_automation-1.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "54144803e309b57d3d239ade0f4fda51",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 23292,
            "upload_time": "2024-05-23T10:24:29",
            "upload_time_iso_8601": "2024-05-23T10:24:29.452394Z",
            "url": "https://files.pythonhosted.org/packages/26/9e/00dd01e330f8c2467298048a9a3e7a2a2e476b59e3c5eba59ca4c487547b/github_project_automation-1.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c73ddcebbe97a57b4ca79d9aa7f777998620dba63d4e8e9e5cb1d0baba545d2b",
                "md5": "4649f7b801984e08e7c187a128b4816d",
                "sha256": "b642ad2845cbb2df73ed92409dfc6f3f6e0233338febb40b4c07c3ca77831628"
            },
            "downloads": -1,
            "filename": "github_project_automation-1.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "4649f7b801984e08e7c187a128b4816d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 34040,
            "upload_time": "2024-05-23T10:24:30",
            "upload_time_iso_8601": "2024-05-23T10:24:30.651092Z",
            "url": "https://files.pythonhosted.org/packages/c7/3d/dcebbe97a57b4ca79d9aa7f777998620dba63d4e8e9e5cb1d0baba545d2b/github_project_automation-1.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-23 10:24:30",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "khulansot",
    "github_project": "github-project-automation",
    "github_not_found": true,
    "lcname": "github-project-automation"
}
        
Elapsed time: 0.44070s