feat: create workflow for autoupdate

VAN-1349
This commit is contained in:
Blue
2023-03-29 11:45:38 +05:00
committed by Mubbshar Anwar
parent 2d4c6a1d3b
commit 42190a89dd

21
.github/workflows/autoupdate.yml vendored Normal file
View File

@@ -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"