Skip to content

Commit

Permalink
[CHORE] Removing master name from gh workflows (#23)
Browse files Browse the repository at this point in the history
Signed-off-by: Nicolas Takashi <nicolas.takashi@coralogix.com>
  • Loading branch information
nicolastakashi authored Jun 23, 2023
1 parent 43b175d commit b519e54
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 17 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@ on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master

jobs:
build:
Expand All @@ -20,6 +18,6 @@ jobs:
- name: Install Go
uses: actions/setup-go@37335c7bb261b353407cff977110895fa0b4f7d8
with:
go-version: 1.20.x
go-version: 1.20.x
- name: Run build
run: make build
run: make build
6 changes: 2 additions & 4 deletions .github/workflows/container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@ on:
pull_request:
push:
branches:
- 'main'
- 'master'
- "main"
tags:
- 'v*'

- "v*"

concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@ on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master

jobs:
check-docs:
Expand All @@ -19,7 +17,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@37335c7bb261b353407cff977110895fa0b4f7d8
with:
go-version: 1.20.x
go-version: 1.20.x
- name: Generate docs
run: make generate-api-docs
- name: Check for changes
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@ on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
tests:
name: Tests
Expand All @@ -36,4 +34,4 @@ jobs:
run: |
go run main.go &
sleep 30s
make e2e
make e2e
1 change: 0 additions & 1 deletion .github/workflows/helm-chart-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
push:
branches:
- main
- master
paths:
- charts/coralogix-operator/Chart.yaml
- charts/coralogix-operator/values.yaml
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
push:
branches:
- main
- master

jobs:
release:
Expand All @@ -26,4 +25,4 @@ jobs:
extra_plugins: |
conventional-changelog-conventionalcommits@4.6.3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b519e54

Please sign in to comment.