From b61b6ee3d590587aa2fe4b3cdd9643c528f7e0c6 Mon Sep 17 00:00:00 2001 From: Yuvraj <10830562+evalsocket@users.noreply.github.com> Date: Tue, 11 May 2021 02:32:59 +0530 Subject: [PATCH] Added boilerplate automation (#161) Signed-off-by: Ketan Umare --- .github/workflows/boilerplate-automation.yml | 37 ++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/boilerplate-automation.yml diff --git a/.github/workflows/boilerplate-automation.yml b/.github/workflows/boilerplate-automation.yml new file mode 100644 index 0000000000..d4a76239be --- /dev/null +++ b/.github/workflows/boilerplate-automation.yml @@ -0,0 +1,37 @@ +name: Update Boilerplate Automation +on: + workflow_dispatch: + +jobs: + update-boilerplate: + name: Update Boilerplate + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: "0" + - name: Update Boilerplate + run: | + make update_boilerplate + - name: Create Pull Request + id: cpr + uses: peter-evans/create-pull-request@v3 + with: + token: ${{ secrets.FLYTE_BOT_PAT }} + commit-message: Update Boilerplate + committer: Flyte-Bot + author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> + signoff: true + branch: flyte-bot-update-boilerplate + delete-branch: true + title: 'Update Boilerplate' + body: | + Update Boilerplate + - Auto-generated by [flyte-bot] + labels: | + boilerplate + team-reviewers: | + owners + maintainers + draft: false +