From 3fe21c96205eb1aa7915acc3c07761bbf8748a9e Mon Sep 17 00:00:00 2001 From: GDS K S Date: Sun, 12 Apr 2026 19:48:35 -0500 Subject: [PATCH] fix: run stacklit action on push to master with auto-commit, not on PRs --- .github/workflows/stacklit-index.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/stacklit-index.yml b/.github/workflows/stacklit-index.yml index 965d70e..69e5a52 100644 --- a/.github/workflows/stacklit-index.yml +++ b/.github/workflows/stacklit-index.yml @@ -1,12 +1,15 @@ -name: Check stacklit index +name: Update stacklit index on: - pull_request: + push: + branches: [master] jobs: stacklit: runs-on: ubuntu-latest + permissions: + contents: write steps: - uses: actions/checkout@v4 - uses: glincker/stacklit-action@v1 with: - mode: check + mode: auto-commit