From 2318d80283eba40ca49aa08951bbdab02d1de98c Mon Sep 17 00:00:00 2001 From: merou Date: Sat, 10 May 2025 20:45:15 +0200 Subject: [PATCH] Update validate.yml --- .github/workflows/validate.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 95b2dc4..b05d097 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -1,8 +1,13 @@ --- name: yaml-lint on: [push] + jobs: lint-yaml-files: + permissions: + pull-requests: write + contents: write + issues: write runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -10,3 +15,8 @@ jobs: uses: ibiqlik/action-yamllint@v3 with: config_file: .yamllint + + - name: Enable Pull Request Automerge + run: gh pr merge --merge --auto "1" + env: + GH_TOKEN: ${{ github.token }}