Merge pull request #33186 from backstage/rugvip/workflows-renovate-lockfile-auto-approve

workflows: auto-approve renovate yarn.lock-only PRs
This commit is contained in:
Patrik Oldsberg
2026-03-07 10:43:21 +01:00
committed by GitHub
@@ -15,6 +15,29 @@ jobs:
with:
egress-policy: audit
- name: Approve yarn.lock-only PRs
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
with:
github-token: ${{ secrets.GH_SERVICE_ACCOUNT_TOKEN }}
script: |
const { data: files } = await github.rest.pulls.listFiles({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: context.payload.pull_request.number,
});
if (files.some(file => !file.filename.endsWith("yarn.lock"))) {
console.log("Skipping approval since some files are not yarn.lock");
return;
}
await github.rest.pulls.createReview({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: context.payload.pull_request.number,
event: "APPROVE",
});
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with: