From 3077886a4ff31a023a6f2296dae1021090942a97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mochol=C3=AD?= Date: Mon, 15 Nov 2021 15:27:42 +0100 Subject: [PATCH] Enable the auto-cc bot (#10531) --- .github/lightning-probot.yml | 1 + .github/workflows/probot-auto-cc.yml | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 .github/lightning-probot.yml create mode 100644 .github/workflows/probot-auto-cc.yml diff --git a/.github/lightning-probot.yml b/.github/lightning-probot.yml new file mode 100644 index 0000000000..bd6a330a44 --- /dev/null +++ b/.github/lightning-probot.yml @@ -0,0 +1 @@ +tracking_issue: 10530 diff --git a/.github/workflows/probot-auto-cc.yml b/.github/workflows/probot-auto-cc.yml new file mode 100644 index 0000000000..0595c4eee6 --- /dev/null +++ b/.github/workflows/probot-auto-cc.yml @@ -0,0 +1,18 @@ +name: Probot + +on: + issues: + types: + - labeled + pull_request: + types: + - labeled + +jobs: + auto-cc: + if: ${{ github.repository_owner == 'PyTorchLightning' }} + runs-on: ubuntu-latest + steps: + - uses: carmocca/probot@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}