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

Add github action for merging main branch #211

Merged
merged 1 commit into from
Oct 31, 2020
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
18 changes: 18 additions & 0 deletions .github/workflows/sync-main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Merge main into master

on:
push:
branches: [main]

jobs:
sync:
name: Merge main branch
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with: {fetch-depth: 0}
- name: merge
run: |
git checkout master
git merge --ff-only main
git push origin master
18 changes: 0 additions & 18 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,3 @@ explaining the feature and why it is necessary.

Pull requests for bug fixes are always appreciated. They should almost always
include a test which fails without the bug fix.

## Dependencies

At this time both a `Gopkg.toml` for `dep` and `go.mod` for go modules exist in
the repo. The `Gopkg.toml` remains so that projects using earlier versions of Go
are able to find compatible versions of dependencies.

If you need to make a change to a dependency:

1. Update `Gopkg.toml`.
2. Run the following to sync the changes to `go.mod`.
```
dep ensure
rm go.mod go.sum
go mod init
gotestsum
go mod tidy
```
18 changes: 0 additions & 18 deletions Gopkg.toml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
A collection of packages to augment `testing` and support common patterns.

[![GoDoc](https://godoc.org/gotest.tools?status.svg)](https://pkg.go.dev/gotest.tools/v3/?tab=subdirectories)
[![CircleCI](https://circleci.com/gh/gotestyourself/gotest.tools/tree/master.svg?style=shield)](https://circleci.com/gh/gotestyourself/gotest.tools/tree/master)
[![CircleCI](https://circleci.com/gh/gotestyourself/gotest.tools/tree/main.svg?style=shield)](https://circleci.com/gh/gotestyourself/gotest.tools/tree/main)
[![Go Reportcard](https://goreportcard.com/badge/gotest.tools)](https://goreportcard.com/report/gotest.tools)

## Usage
Expand Down
25 changes: 0 additions & 25 deletions appveyor.yml

This file was deleted.

56 changes: 0 additions & 56 deletions dobi.yaml

This file was deleted.