diff options
author | 2021-08-18 07:19:25 +0200 | |
---|---|---|
committer | 2021-08-17 22:19:25 -0700 | |
commit | c7bbb042b0f7df5c0b059f59b208afa7d0067238 (patch) | |
tree | c70057186d35d59240eb8c723d4e6d88499f29f6 | |
parent | 537e348b3e3a1b008acea0440e6462ed9087f8b1 (diff) | |
download | astro-c7bbb042b0f7df5c0b059f59b208afa7d0067238.tar.gz astro-c7bbb042b0f7df5c0b059f59b208afa7d0067238.tar.zst astro-c7bbb042b0f7df5c0b059f59b208afa7d0067238.zip |
Make congratsbot not run in forks (#1145)
-rw-r--r-- | .github/workflows/congratsbot.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/congratsbot.yml b/.github/workflows/congratsbot.yml index bb6229638..f736c1069 100644 --- a/.github/workflows/congratsbot.yml +++ b/.github/workflows/congratsbot.yml @@ -8,7 +8,7 @@ on: jobs: congrats: name: "discord:congratsbot" - #if: github.event.commits[0] && !github.event.commits[1] + if: github.repository == 'snowpackjs/astro' runs-on: ubuntu-latest steps: - name: Send a Discord notification when a PR is merged |