From fdef68103d91a18676225d3dae8c9189a1194329 Mon Sep 17 00:00:00 2001 From: Ryder Belserion <52214219+RyderBelserion@users.noreply.github.com> Date: Sat, 5 Nov 2022 00:57:28 -0400 Subject: [PATCH] Add misc things --- .fleet/settings.json | 3 +++ .github/auto-assign.yml | 26 ++++++++++++++++++++++++++ .github/workflows/auto-assign.yml | 14 ++++++++++++++ .gitignore | 2 +- 4 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 .fleet/settings.json create mode 100644 .github/auto-assign.yml create mode 100644 .github/workflows/auto-assign.yml diff --git a/.fleet/settings.json b/.fleet/settings.json new file mode 100644 index 0000000..06b604c --- /dev/null +++ b/.fleet/settings.json @@ -0,0 +1,3 @@ +{ + "java.home": "C:/Program Files/Eclipse Adoptium/jdk-17.0.4.101-hotspot/bin" +} \ No newline at end of file diff --git a/.github/auto-assign.yml b/.github/auto-assign.yml new file mode 100644 index 0000000..b56891e --- /dev/null +++ b/.github/auto-assign.yml @@ -0,0 +1,26 @@ +# Set to true to add reviewers to PRs +addReviewers: true + +# Set to 'author' to add PR's author as an assignee +addAssignees: author + +# A list of reviewers to be added to PRs (GitHub username) +reviewers: + - RyderBelserion + +# A number of reviewers added to the PR +# Set 0 to add all the reviewers (default: 0) +numberOfReviewers: 1 + +# A list of assignees, overrides reviewers if set +assignees: + - RyderBelserion + +# A number of assignees to add to the PRs +# Set to 0 to add all the assignees. +# Uses numberOfReviewers if unset. +numberOfAssignees: 0 + +# A list of keywords to be skipped the process if PR's title include it +skipKeywords: + - wip \ No newline at end of file diff --git a/.github/workflows/auto-assign.yml b/.github/workflows/auto-assign.yml new file mode 100644 index 0000000..0453a83 --- /dev/null +++ b/.github/workflows/auto-assign.yml @@ -0,0 +1,14 @@ +name: Auto Assign +on: + issues: + types: [opened] + pull_request: + types: [opened] +jobs: + run: + runs-on: ubuntu-latest + steps: + - uses: wow-actions/auto-assign@v1 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + CONFIG_FILE: .github/auto-assign.yml \ No newline at end of file diff --git a/.gitignore b/.gitignore index 1f94fa7..ce181e5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ .idea .gradle -build +build \ No newline at end of file