From a6bedd4f639ec718cf0b4707d9d43df00e54f220 Mon Sep 17 00:00:00 2001 From: kchason Date: Thu, 11 Jan 2024 20:48:37 -0500 Subject: [PATCH] Only run annotate job on kchason PRs --- .github/workflows/annotate.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/annotate.yml b/.github/workflows/annotate.yml index 81fab9b..bc012ea 100644 --- a/.github/workflows/annotate.yml +++ b/.github/workflows/annotate.yml @@ -4,8 +4,10 @@ on: [ pull_request ] jobs: annotate: + if: github.event.pull_request.head.user == 'kchason' runs-on: ubuntu-latest - steps: + steps: + # Get the code from the repository to be packaged - name: Get Repo uses: actions/checkout@v3