From b2daf9a74e3f08c67fa350c0aa5455c6285cfa98 Mon Sep 17 00:00:00 2001 From: Werner Date: Tue, 13 Aug 2024 16:28:23 +0200 Subject: [PATCH] attempt to fix pr announce for all contributors The earlier attempt seem to limit announces to repository members for some reason. This attempt limits to the repo only, therefore forks should not be affected. Not sure if it works, but there is only one way to find out. --- .github/workflows/pr-announce.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-announce.yml b/.github/workflows/pr-announce.yml index 94988e6d0bf5..a2d7cd9c1c3f 100644 --- a/.github/workflows/pr-announce.yml +++ b/.github/workflows/pr-announce.yml @@ -7,7 +7,7 @@ jobs: build: name: "Announce PR on Discord" runs-on: ubuntu-latest - if: ${{ github.repository_owner == 'Armbian' }} + if: github.repository == 'armbian/build' steps: - name: Get repo uses: actions/checkout@v4