Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Trigger on pull_request workflows on all branches #174

Merged
merged 4 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/main-tier0-releases.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Test TIER0 release braches

on:
pull_request:
branches: [ "release-0.5", "release-0.4", "release-0.3" ]
paths-ignore:
- '**.md'
push:
branches: [ "release-0.5", "release-0.4", "release-0.3" ]
paths-ignore:
- '**.md'

jobs:
test-tier0:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: start-minikube
uses: konveyor/tackle2-operator/.github/actions/start-minikube@main
with:
memory: 6500M
- name: install-tackle
uses: konveyor/tackle2-operator/.github/actions/install-tackle@main
- uses: actions/setup-go@v3
with:
go-version: '1.19'
- name: Install dependencies
run: |
go install github.com/onsi/ginkgo/v2/ginkgo
- run: HUB_BASE_URL="http://$(minikube ip)/hub" DEBUG=1 make test-tier0
env:
MAVEN_TESTAPP_USER: ${{ secrets.MAVEN_TESTAPP_USER }}
MAVEN_TESTAPP_TOKEN: ${{ secrets.MAVEN_TESTAPP_TOKEN }}
30 changes: 30 additions & 0 deletions .github/workflows/main-tier1-releases.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Test TIER1 release braches

on:
pull_request:
branches: [ "release-0.5", "release-0.4", "release-0.3" ]
paths-ignore:
- '**.md'
push:
branches: [ "release-0.5", "release-0.4", "release-0.3" ]
paths-ignore:
- '**.md'

jobs:
test-tier1:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: start-minikube
uses: konveyor/tackle2-operator/.github/actions/start-minikube@main
with:
memory: 6500M
- name: install-tackle
uses: konveyor/tackle2-operator/.github/actions/install-tackle@main
- uses: actions/setup-go@v3
with:
go-version: '1.19'
- name: Install dependencies
run: |
go install github.com/onsi/ginkgo/v2/ginkgo
- run: HUB_BASE_URL="http://$(minikube ip)/hub" DEBUG=1 make test-tier1
30 changes: 30 additions & 0 deletions .github/workflows/main-tier2-releases.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Test TIER2 release braches

on:
pull_request:
branches: [ "release-0.5", "release-0.4", "release-0.3" ]
paths-ignore:
- '**.md'
push:
branches: [ "release-0.5", "release-0.4", "release-0.3" ]
paths-ignore:
- '**.md'

jobs:
test-tier2:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: start-minikube
uses: konveyor/tackle2-operator/.github/actions/start-minikube@main
with:
memory: 6500M
- name: install-tackle
uses: konveyor/tackle2-operator/.github/actions/install-tackle@main
- uses: actions/setup-go@v3
with:
go-version: '1.19'
- name: Install dependencies
run: |
go install github.com/onsi/ginkgo/v2/ginkgo
- run: HUB_BASE_URL="http://$(minikube ip)/hub" DEBUG=1 make test-tier2
Loading