Skip to content

Commit f75c7b8

Browse files
committed
chore: move from trunk from master to main
1 parent 5b3979f commit f75c7b8

File tree

3 files changed

+9
-13
lines changed

3 files changed

+9
-13
lines changed

.github/workflows/homebrew.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: homebrew
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77

88
jobs:
99
homebrew:
@@ -35,7 +35,7 @@ jobs:
3535
[default]
3636
region=us-east-1
3737
output=json
38-
38+
3939
[profile cloudgraph-iac]
4040
role_arn = ${{ secrets.AWS_ROLE_ARN }}
4141
source_profile = default

.github/workflows/pr-validator.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
1+
---
12
name: pr-validator
23

34
on:
45
pull_request:
56
types: [synchronize, opened, reopened, edited]
67
branches:
7-
- master
8+
- main
89
- beta
910

1011
jobs:
1112
pr-validation:
1213
runs-on: ubuntu-latest
1314
steps:
1415
- uses: actions/checkout@v3
15-
- run : |
16-
if [ "$TARGET_BRANCH" == "master" ] && [ "$SOURCE_BRANCH" == "beta" ]; then
16+
- run: |
17+
if [ "$TARGET_BRANCH" == "main" ] && [ "$SOURCE_BRANCH" == "beta" ]; then
1718
echo "Merge from $SOURCE_BRANCH to $TARGET_BRANCH is valid"
1819
exit 0
1920
elif [ "$TARGET_BRANCH" == "beta" ] && [ "$SOURCE_BRANCH" == "alpha" ]; then
@@ -25,6 +26,4 @@ jobs:
2526
fi
2627
env:
2728
SOURCE_BRANCH: ${{ github.head_ref }}
28-
TARGET_BRANCH: ${{ github.base_ref }}
29-
30-
29+
TARGET_BRANCH: ${{ github.base_ref }}

.github/workflows/publish.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
1-
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2-
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
3-
1+
---
42
name: publish
53

6-
74
on:
85
push:
96
branches:
10-
- master
117
- alpha
128
- beta
9+
- main
1310

1411
jobs:
1512
build:

0 commit comments

Comments
 (0)