From 62d7ae0327f8cfee2abe9e233c45b6778d25a873 Mon Sep 17 00:00:00 2001 From: aerinon Date: Tue, 27 Oct 2020 11:39:24 -0600 Subject: [PATCH] Version bump - auto-assign reviewers to PRs --- .github/auto-assign.yml | 17 +++++++++++++++++ Main.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 .github/auto-assign.yml diff --git a/.github/auto-assign.yml b/.github/auto-assign.yml new file mode 100644 index 00000000..1e876e88 --- /dev/null +++ b/.github/auto-assign.yml @@ -0,0 +1,17 @@ +# Set to true to add reviewers to pull requests +addReviewers: true + +# Set to true to add assignees to pull requests +addAssignees: true + +# A list of reviewers to be added to pull requests (GitHub user name) +reviewers: + - aerinon + +# A list of keywords to be skipped the process that add reviewers if pull requests include it +skipKeywords: + - wip + +# A number of reviewers added to the pull request +# Set 0 to add all the reviewers (default: 0) +numberOfReviewers: 0 \ No newline at end of file diff --git a/Main.py b/Main.py index f5696e3c..a80713cb 100644 --- a/Main.py +++ b/Main.py @@ -24,7 +24,7 @@ from Fill import distribute_items_cutoff, distribute_items_staleness, distribute from ItemList import generate_itempool, difficulties, fill_prizes from Utils import output_path, parse_player_names -__version__ = '0.1.0-dev' +__version__ = '0.1.1-dev' class EnemizerError(RuntimeError): pass