diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2ce5c4b..6752439 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,7 +1,13 @@ name: Build Manifest on: + push: + branches: + - main pull_request: + branches: + - main + types: [opened, reopened, synchronize] concurrency: group: ${{ github.workflow }}-${{ github.ref }} diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index c9a7377..855fa24 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -1,8 +1,13 @@ - name: "CodeQL" on: + push: + branches: + - main pull_request: + branches: + - main + types: [opened, reopened, synchronize] concurrency: group: ${{ github.workflow }}-${{ github.ref }} diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 22030fd..2a40ae2 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -1,10 +1,15 @@ name: E2E on: - pull_request: push: + branches: + - main tags: - "**" + pull_request: + branches: + - main + types: [opened, reopened, synchronize] permissions: contents: read diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6a4abf6..b3211c4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,7 +1,13 @@ name: Unit Tests on: + push: + branches: + - main pull_request: + branches: + - main + types: [opened, reopened, synchronize] env: GO_VERSION: 1.21.0