From 66aedac55ea9ea814fa798dd4823fd6721632171 Mon Sep 17 00:00:00 2001 From: wrongwrong Date: Sun, 17 Jan 2021 22:13:35 +0900 Subject: [PATCH 1/2] =?UTF-8?q?dependency=E3=81=AE=E6=95=B4=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle.kts | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 06a4d1d..dc399c6 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,7 +1,7 @@ plugins { id("maven") id("java") - id("org.jetbrains.kotlin.jvm") version "1.4.21" + kotlin("jvm") version "1.4.21" id("org.jlleitschuh.gradle.ktlint") version "9.4.1" id("jacoco") } @@ -13,22 +13,11 @@ java { sourceCompatibility = JavaVersion.VERSION_1_8 } -buildscript { - repositories { - mavenCentral() - } - - dependencies { - classpath(kotlin("gradle-plugin")) - } -} - repositories { mavenCentral() } dependencies { - implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") implementation(kotlin("reflect")) // https://mvnrepository.com/artifact/org.jetbrains/annotations compileOnly(group = "org.jetbrains", name = "annotations", version = "20.1.0") From f3dc5b7ba1342963244a5aa72a6352c826de4c6a Mon Sep 17 00:00:00 2001 From: wrongwrong Date: Sun, 31 Jan 2021 14:41:14 +0900 Subject: [PATCH 2/2] =?UTF-8?q?Auto=20Assign=E3=81=AE=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/auto-author-assign.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/auto-author-assign.yml diff --git a/.github/workflows/auto-author-assign.yml b/.github/workflows/auto-author-assign.yml new file mode 100644 index 0000000..3702bcc --- /dev/null +++ b/.github/workflows/auto-author-assign.yml @@ -0,0 +1,13 @@ +name: 'Auto Author Assign' + +on: + pull_request_target: + types: [opened, reopened] + +jobs: + assign-author: + runs-on: ubuntu-latest + steps: + - uses: toshimaru/auto-author-assign@v1.2.0 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}"