From 028e9822afe8d9b651b7d58490c21582ddd90f77 Mon Sep 17 00:00:00 2001 From: Xianpeng Shen Date: Tue, 21 Jul 2026 10:18:40 +0300 Subject: [PATCH 1/3] Add funding configuration for Open Collective I have set up https://opencollective.com/cpp-linter and invited @2bndy5 to join. This will allow the cpp-linter team to be represented as a whole and provide a way for the community to support the project. I don't expect we'll receive much financial support, but having the option available is better than having nothing at all. --- .github/FUNDING.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..22ce945 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +open_collective: cpp-linter From 5302fd99876357e17654c9aaf6ef5d83ff5d3dfd Mon Sep 17 00:00:00 2001 From: Xianpeng Shen Date: Tue, 21 Jul 2026 10:21:31 +0300 Subject: [PATCH 2/3] fix: Specify pull request event types in workflow Added pull request types to workflow triggers. --- .github/workflows/main.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6c0bddd..a4592a7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,7 +4,11 @@ on: push: branches: [main] pull_request: - branches: [main] + types: + - opened + - reopened + - synchronize + - edited # for PR title changes permissions: {} From f488dcdd25249dc6aeee36245fd7727a8142f171 Mon Sep 17 00:00:00 2001 From: Brendan <2bndy5@gmail.com> Date: Tue, 21 Jul 2026 01:00:30 -0700 Subject: [PATCH 3/3] restore pr branch targets trigger --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a4592a7..f2e45be 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,6 +4,7 @@ on: push: branches: [main] pull_request: + branches: [main] types: - opened - reopened