From b62773e23e04b039a40691b756867013b73e1382 Mon Sep 17 00:00:00 2001 From: Garrett Ladley <92384606+garrettladley@users.noreply.github.com> Date: Thu, 7 Mar 2024 00:21:20 -0500 Subject: [PATCH] feat: auto-update dependency prs (#351) --- .github/workflows/auto_update_dependency_pr.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/auto_update_dependency_pr.yml diff --git a/.github/workflows/auto_update_dependency_pr.yml b/.github/workflows/auto_update_dependency_pr.yml new file mode 100644 index 000000000..2a87b0ae3 --- /dev/null +++ b/.github/workflows/auto_update_dependency_pr.yml @@ -0,0 +1,16 @@ +name: Auto-Update Dependency PR +on: + push: + branches: + - main +jobs: + autoupdate: + name: Auto-Update Dependency PR + runs-on: ubuntu-latest + steps: + - uses: docker://chinthakagodawita/autoupdate-action:v1 + env: + GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" + PR_FILTER: "labelled" + PR_LABELS: "dependencies" + MERGE_CONFLICT_ACTION: "fail"