From 49524c20111a15ac6b83eb322cee944835647777 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 4 Apr 2026 09:11:04 +0000 Subject: [PATCH 1/2] fix: add branch=main to GitHub Actions status badge URLs in README Agent-Logs-Url: https://github.com/NextCommunity/NextCommunity.github.io/sessions/8e809b33-603c-4b8a-b098-e037fcee17e8 Co-authored-by: jbampton <418747+jbampton@users.noreply.github.com> --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2016d76..1c8f31a 100644 --- a/README.md +++ b/README.md @@ -7,10 +7,10 @@ [![Built with Nunjucks](https://img.shields.io/badge/Built%20with-Nunjucks-darkgreen)](https://mozilla.github.io/nunjucks/) [![Built with Tailwind CSS](https://img.shields.io/badge/Built%20with-Tailwind-blue)](https://tailwindcss.com/) -[![Super-Linter](https://github.com/NextCommunity/NextCommunity.github.io/actions/workflows/super-linter.yml/badge.svg)](https://github.com/NextCommunity/NextCommunity.github.io/actions/workflows/super-linter.yml) -[![Audit hooks](https://github.com/NextCommunity/NextCommunity.github.io/actions/workflows/pre-commit-audit.yml/badge.svg)](https://github.com/NextCommunity/NextCommunity.github.io/actions/workflows/pre-commit-audit.yml) -[![Manual hooks](https://github.com/NextCommunity/NextCommunity.github.io/actions/workflows/pre-commit-manual.yml/badge.svg)](https://github.com/NextCommunity/NextCommunity.github.io/actions/workflows/pre-commit-manual.yml) -[![Standard hooks](https://github.com/NextCommunity/NextCommunity.github.io/actions/workflows/pre-commit.yml/badge.svg)](https://github.com/NextCommunity/NextCommunity.github.io/actions/workflows/pre-commit.yml) +[![Super-Linter](https://github.com/NextCommunity/NextCommunity.github.io/actions/workflows/super-linter.yml/badge.svg?branch=main)](https://github.com/NextCommunity/NextCommunity.github.io/actions/workflows/super-linter.yml?query=branch%3Amain) +[![Audit hooks](https://github.com/NextCommunity/NextCommunity.github.io/actions/workflows/pre-commit-audit.yml/badge.svg?branch=main)](https://github.com/NextCommunity/NextCommunity.github.io/actions/workflows/pre-commit-audit.yml?query=branch%3Amain) +[![Manual hooks](https://github.com/NextCommunity/NextCommunity.github.io/actions/workflows/pre-commit-manual.yml/badge.svg?branch=main)](https://github.com/NextCommunity/NextCommunity.github.io/actions/workflows/pre-commit-manual.yml?query=branch%3Amain) +[![Standard hooks](https://github.com/NextCommunity/NextCommunity.github.io/actions/workflows/pre-commit.yml/badge.svg?branch=main)](https://github.com/NextCommunity/NextCommunity.github.io/actions/workflows/pre-commit.yml?query=branch%3Amain) [![Easter Eggs](https://img.shields.io/badge/Easter-Eggs-ff69b4?labelColor=9b59b6)](https://nextcommunity.github.io) From 37abb6bea6397b49e19b751fb1846cf34f4ba814 Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Sat, 4 Apr 2026 19:16:57 +1000 Subject: [PATCH 2/2] Add push trigger for main branch to manual, audit, and standards hook workflows (#421) Agent-Logs-Url: https://github.com/NextCommunity/NextCommunity.github.io/sessions/74413ae5-9c4f-4fec-988b-e7e8a7644c22 Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: jbampton <418747+jbampton@users.noreply.github.com> --- .github/workflows/pre-commit-audit.yml | 5 ++++- .github/workflows/pre-commit-manual.yml | 5 ++++- .github/workflows/pre-commit.yml | 5 ++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pre-commit-audit.yml b/.github/workflows/pre-commit-audit.yml index fca9bf2..dbaa578 100644 --- a/.github/workflows/pre-commit-audit.yml +++ b/.github/workflows/pre-commit-audit.yml @@ -1,7 +1,10 @@ # https://github.com/j178/prek name: Audit hooks -on: [pull_request] +on: + pull_request: + push: + branches: [main] permissions: contents: read diff --git a/.github/workflows/pre-commit-manual.yml b/.github/workflows/pre-commit-manual.yml index df26d13..f1f41b0 100644 --- a/.github/workflows/pre-commit-manual.yml +++ b/.github/workflows/pre-commit-manual.yml @@ -1,7 +1,10 @@ # https://github.com/j178/prek name: Manual hooks -on: [pull_request] +on: + pull_request: + push: + branches: [main] permissions: contents: read diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 43d74ed..b004cd7 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -1,7 +1,10 @@ # https://github.com/j178/prek name: Standard hooks -on: [pull_request] +on: + pull_request: + push: + branches: [main] permissions: contents: read