From 8345f096472bafc9ba44b539590403813aa10d2c Mon Sep 17 00:00:00 2001 From: Yuvraj Date: Wed, 5 May 2021 17:29:23 +0530 Subject: [PATCH] Added boilerplate automation Signed-off-by: Yuvraj --- .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 00000000..d4a76239 --- /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 +