Skip to content

Commit

Permalink
Rename master->main
Browse files Browse the repository at this point in the history
  • Loading branch information
barnybug committed Feb 23, 2023
1 parent 0fba4f4 commit d160760
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Please when making a pull request:

- make sure changes are up to date with master.
- make sure changes are up to date with main.
- please use brief, descriptive commit messages.
- check code has been go formatted with 'go fmt'.
- ensure you've added an integration test (under internal/features) or a unit test.
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: Release
on:
push:
tags: '*.*.*'
tags:
- '*.*.*'
jobs:

release:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Test
on: [push]
on: push
jobs:

build:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build status](https://secure.travis-ci.org/barnybug/cli53.svg?branch=master)](https://secure.travis-ci.org/barnybug/cli53) [![codecov.io](http://codecov.io/github/barnybug/cli53/coverage.svg?branch=master)](http://codecov.io/github/barnybug/cli53?branch=master)
[![Build status](https://secure.travis-ci.org/barnybug/cli53.svg?branch=main)](https://secure.travis-ci.org/barnybug/cli53) [![codecov.io](http://codecov.io/github/barnybug/cli53/coverage.svg?branch=main)](http://codecov.io/github/barnybug/cli53?branch=main)
[![Join the chat at https://gitter.im/barnybug/cli53](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/barnybug/cli53?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

# cli53 - Command line tool for Amazon Route 53
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
)

var r53 *route53.Route53
var version = "master"
var version = "main"

// Main entry point for cli53 application
func Main(args []string) int {
Expand Down

0 comments on commit d160760

Please sign in to comment.