From 45148225c4d860a9c09706ea683a3e5a9b282476 Mon Sep 17 00:00:00 2001 From: Kishan B Date: Mon, 26 Aug 2024 10:08:44 +0530 Subject: [PATCH 1/2] Add CI badges to readme doc --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index ad68ca7..abe7288 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,9 @@ # go-weasyprint [![Go Reference](https://pkg.go.dev/badge/github.com/benoitkugler/go-weasyprint.svg)](https://pkg.go.dev/github.com/benoitkugler/go-weasyprint) +[![Build Status](https://github.com/benoitkugler/go-weasyprint/actions/workflows/build.yml/badge.svg)](https://github.com/benoitkugler/go-weasyprint/actions/workflows/build.yml) +[![Go Report Card](https://goreportcard.com/badge/github.com/benoitkugler/go-weasyprint)](https://goreportcard.com/report/github.com/benoitkugler/go-weasyprint) +[![Latest release](https://img.shields.io/github/release/benoitkugler/go-weasyprint.svg)](https://github.com/benoitkugler/go-weasyprint/releases) Golang port of [Weasyprint](https://github.com/Kozea/WeasyPrint) python Html to Pdf library. From 15498b9cceb5cdcfa78344615ff018a0b73f26b5 Mon Sep 17 00:00:00 2001 From: Kishan B Date: Mon, 26 Aug 2024 10:10:47 +0530 Subject: [PATCH 2/2] Fix pipeline trigger issue --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3663ede..a016efd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,9 +2,9 @@ name: Build on: push: - branches: [main] + branches: [master] pull_request: - branches: [main] + branches: [master] jobs: build: