From 68f9b0d57a6c74931a137c4ade86ac76ae8d4265 Mon Sep 17 00:00:00 2001 From: AmitMY Date: Tue, 28 Apr 2026 11:39:42 +0000 Subject: [PATCH] ci: drop pull_request trigger from Format bib (push to master only) The 'Format bib' workflow runs rebiber and auto-commits the result back to the branch. When triggered on both push and pull_request events, both runs race to push the auto-commit and one fails with '[rejected] (fetch first)', turning the check red even though the bib content is fine. Restrict the trigger to pushes on main/master so the formatter only runs post-merge. The check no longer needs to gate PRs because the bib auto-format on master is sufficient. --- .github/workflows/format-bib.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/format-bib.yml b/.github/workflows/format-bib.yml index 2a007ac9..124302e4 100644 --- a/.github/workflows/format-bib.yml +++ b/.github/workflows/format-bib.yml @@ -1,8 +1,6 @@ name: Format bib on: - pull_request: - branches: [ main, master ] push: branches: [ main, master ]