From 130e1860060b7b5234fdf25c22dc7fe7f18cb6e5 Mon Sep 17 00:00:00 2001 From: Jimmy Zelinskie Date: Thu, 20 Feb 2020 13:13:38 -0500 Subject: [PATCH 1/2] readme: fix broken build status badge The link and image source were reversed by accident. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a2a2816..9e58897 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Chihaya -[![Build Status](https://github.com/chihaya/chihaya/actions)](https://github.com/chihaya/chihaya/workflows/CI/badge.svg) +[![Build Status](https://github.com/chihaya/chihaya/workflows/CI/badge.svg)](https://github.com/chihaya/chihaya/actions) [![Docker Repository on Quay.io](https://quay.io/repository/jzelinskie/chihaya/status "Docker Repository on Quay.io")](https://quay.io/repository/jzelinskie/chihaya) [![Go Report Card](https://goreportcard.com/badge/github.com/chihaya/chihaya)](https://goreportcard.com/report/github.com/chihaya/chihaya) [![GoDoc](https://godoc.org/github.com/chihaya/chihaya?status.svg)](https://godoc.org/github.com/chihaya/chihaya) From 5e0ee0bd00b9d9c2c007c96c00dc4ec7c3a9d24e Mon Sep 17 00:00:00 2001 From: Jimmy Zelinskie Date: Thu, 20 Feb 2020 13:21:05 -0500 Subject: [PATCH 2/2] workflows: execute on pull request --- .github/workflows/go.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml index ac72c5b..0794946 100644 --- a/.github/workflows/go.yaml +++ b/.github/workflows/go.yaml @@ -1,5 +1,5 @@ name: CI -on: [push] +on: [push, pull_request] jobs: build: name: Build & Lint