From 42190a89dda8d29ed9f6c0976e91a83bfad8fb24 Mon Sep 17 00:00:00 2001 From: Blue Date: Wed, 29 Mar 2023 11:45:38 +0500 Subject: [PATCH] feat: create workflow for autoupdate VAN-1349 --- .github/workflows/autoupdate.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/autoupdate.yml diff --git a/.github/workflows/autoupdate.yml b/.github/workflows/autoupdate.yml new file mode 100644 index 00000000..294f6791 --- /dev/null +++ b/.github/workflows/autoupdate.yml @@ -0,0 +1,21 @@ +name: autoupdate +on: + push: + branches: + - master +jobs: + autoupdate: + name: autoupdate + runs-on: ubuntu-22.04 + steps: + - uses: docker://chinthakagodawita/autoupdate-action:v1 + env: + GITHUB_TOKEN: "${{ secrets.CC_GITHUB_TOKEN }}" + DRY_RUN: "false" + PR_FILTER: "labelled" + PR_LABELS: "autoupdate" + EXCLUDED_LABELS: "dependencies,wontfix" + MERGE_MSG: "Branch was auto-updated." + RETRY_COUNT: "5" + RETRY_SLEEP: "300" + MERGE_CONFLICT_ACTION: "fail"