diff --git a/.github/workflows/ci-neon.yml b/.github/workflows/ci-neon.yml index a0b596928..3e090b283 100644 --- a/.github/workflows/ci-neon.yml +++ b/.github/workflows/ci-neon.yml @@ -26,6 +26,7 @@ jobs: container: image: docker://kdeneon/plasma:user options: --tmpfs /build:rw --user 0:0 + if: ${{ github.repository == 'calamares/calamares' }} steps: - name: "prepare env" run: | diff --git a/.github/workflows/issues.yml b/.github/workflows/issues.yml index 1d039795c..698f0d733 100644 --- a/.github/workflows/issues.yml +++ b/.github/workflows/issues.yml @@ -10,7 +10,7 @@ jobs: steps: - name: "notify: new" uses: rectalogic/notify-irc@v1 - if: github.event.issue.state == "open" + if: github.event.issue.state == 'open' with: server: chat.freenode.net channel: "#calamares" @@ -18,7 +18,7 @@ jobs: message: "[${{ github.event.issue.title }}](${{ github.event.issue.html_url }}) opened by ${{ github.actor }}" - name: "notify: closed" uses: rectalogic/notify-irc@v1 - if: github.event.issue.state != "open" + if: github.event.issue.state != 'open' with: server: chat.freenode.net channel: "#calamares"