From 7354389f2de6f9f52cd7845312c12059fcba7650 Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Fri, 15 May 2020 15:49:10 +0600 Subject: [PATCH 1/3] Create greetings.yml --- .github/workflows/greetings.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/greetings.yml diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml new file mode 100644 index 0000000000..bdde1cca7b --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,13 @@ +name: Greetings + +on: [pull_request, issues] + +jobs: + greeting: + runs-on: ubuntu-latest + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: 'Welcome with your first issue' + pr-message: 'Welcome with your first PullRequest' From 590db3e6726c68cd45db3c2697055c2fe27a0556 Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Fri, 15 May 2020 17:02:33 +0600 Subject: [PATCH 2/3] Create label.yml --- .github/workflows/label.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/label.yml diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml new file mode 100644 index 0000000000..e90b599b9a --- /dev/null +++ b/.github/workflows/label.yml @@ -0,0 +1,19 @@ +# This workflow will triage pull requests and apply a label based on the +# paths that are modified in the pull request. +# +# To use this workflow, you will need to set up a .github/labeler.yml +# file with configuration. For more information, see: +# https://github.com/actions/labeler/blob/master/README.md + +name: Labeler +on: [pull_request] + +jobs: + label: + + runs-on: ubuntu-latest + + steps: + - uses: actions/labeler@v2 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}" From 35fe48db350889e34e87eadc39df5b845213dc8f Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Fri, 15 May 2020 17:05:53 +0600 Subject: [PATCH 3/3] Create labeler.yml --- .github/labeler.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/labeler.yml diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 0000000000..10e298e962 --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,6 @@ +core: "./TelegramBotAPI/*" +api_extensions: "./TelegramBotAPI-extensions-api/*" +utils_extensions: "./TelegramBotAPI-extensions-utils/*" + +code: "./**/*.kt" +gradle: "./**/*.gradle"