Skip to content

Commit

Permalink
ci: rename master branch to main (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
HKWinterhalter authored Jul 17, 2023
1 parent 64d4646 commit 64c4b63
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Check compiled action script CI
on:
push:
branches:
- master
- main
pull_request:
jobs:
compile:
Expand All @@ -26,5 +26,5 @@ jobs:
- name: Lint Code Base
uses: github/super-linter@v4
env:
DEFAULT_BRANCH: master
DEFAULT_BRANCH: main
VALIDATE_JSON: true
2 changes: 1 addition & 1 deletion .github/workflows/buildpack-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ on:
# breaking changes
description: Conformance GitHub Actions version by git ref
type: string
default: 'master'
default: 'main'
required: false
jobs:
# Download and cache the Functions Framework conformance test client
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Conformance test framework validation CI
on:
push:
branches:
- master
- main
pull_request:
jobs:
run-conformance:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Unit test CI
on:
push:
branches:
- master
- main
pull_request:
jobs:
test:
Expand Down
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ BUILD
action/node_modules
action/lib

## From https://github.com/github/gitignore/blob/master/Go.gitignore
## From https://github.com/github/gitignore/blob/main/Go.gitignore

# Binaries for programs and plugins
*.exe
Expand All @@ -19,7 +19,7 @@ action/lib
# Test binary, built with `go test -c`
*.test

## From https://github.com/github/gitignore/blob/master/Node.gitignore
## From https://github.com/github/gitignore/blob/main/Node.gitignore

# Logs
logs
Expand Down
2 changes: 1 addition & 1 deletion docs/mapping.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ The GCF HTTP representation of Cloud PubSub events (events with a
*gcf_service* of `pubsub.googleapis.com`) contain a `data` property
which needs to be wrapped in an extra JSON object in the CloudEvent
`data` attribute, to conform with the [expected CloudEvent
representation](https://github.com/googleapis/google-cloudevents/blob/master/proto/google/events/cloud/pubsub/v1/data.proto).
representation](https://github.com/googleapis/google-cloudevents/blob/main/proto/google/events/cloud/pubsub/v1/data.proto).

So the CloudEvent should have:

Expand Down

0 comments on commit 64c4b63

Please sign in to comment.