fix: restrict workflow triggers to the master branch for linting and publishing

This commit is contained in:
bohd4nx
2026-03-15 22:45:00 +02:00
parent d8f0240807
commit f4a96bb01a
2 changed files with 4 additions and 5 deletions
+2 -2
View File
@@ -2,9 +2,9 @@ name: Lint
on:
push:
branches: ["**"]
branches: [master]
pull_request:
branches: ["**"]
branches: [master]
jobs:
lint: