From b649b399e49c68a6cceaa88e25147f3e867f5d30 Mon Sep 17 00:00:00 2001 From: Andrew Ayer Date: Mon, 23 Jun 2025 23:20:54 -0400 Subject: [PATCH] Do not run actions on pull requests It's a security minefield. Thanks to caching of the build environment, not even read-only actions are safe. --- .github/workflows/test.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d80355f..ac5a7eb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,7 +2,6 @@ name: Test and lint Go Code on: push: - pull_request: schedule: - cron: '42 9 * * *' # Runs daily at 09:42 UTC workflow_dispatch: # Allows manual triggering