This is an automated email from the ASF dual-hosted git repository. robbie pushed a commit to branch new-logging in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
commit a9ef1bad2ca96fa49a743da8fd2ef5eb134b6de9 Author: Robbie Gemmell <[email protected]> AuthorDate: Thu May 12 13:39:39 2022 +0100 disable push builds on apache repo; still enabled for forks, along with PR + manual builds --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f07bd1fc3e..7308b06c02 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,6 +4,7 @@ on: [push, pull_request, workflow_dispatch] jobs: test: + if: github.repository != 'apache/activemq-artemis' || github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request' name: Test (${{ matrix.java }}) runs-on: ubuntu-18.04 strategy: @@ -41,6 +42,7 @@ jobs: checks: + if: github.repository != 'apache/activemq-artemis' || github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request' name: Checks (${{ matrix.java }}) runs-on: ubuntu-18.04 strategy:
