From fe188dd11f68dd2c162780784a6f97c11f8e9698 Mon Sep 17 00:00:00 2001 From: Haruyuki Iida Date: Sat, 26 Jul 2025 04:16:33 +0000 Subject: [PATCH 1/3] build: update workflow triggers to ignore all tags on push --- .github/workflows/build.yml | 6 +++++- .gitignore | 3 ++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e07cb88..83c2528 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,5 +1,9 @@ name: build -on: [push, pull_request] +on: + push: + tags-ignore: + - '**' + pull_request: env: SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }} jobs: diff --git a/.gitignore b/.gitignore index 7c35509..58695ae 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ coverage Gemfile Gemfile.lock -test/tmp/* \ No newline at end of file +test/tmp/* +CLAUDE.md From e93da33ccb5f58a2a9996dcd3c5ad8b8a68df613 Mon Sep 17 00:00:00 2001 From: Haruyuki Iida Date: Sat, 26 Jul 2025 04:21:48 +0000 Subject: [PATCH 2/3] build: update tags-ignore pattern to single wildcard --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 83c2528..50f390f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,7 +2,7 @@ name: build on: push: tags-ignore: - - '**' + - '*' pull_request: env: SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }} From 32bd2828dc5f1f971f384969e76ca36ab90300ce Mon Sep 17 00:00:00 2001 From: Haruyuki Iida Date: Sat, 26 Jul 2025 04:40:00 +0000 Subject: [PATCH 3/3] build: update tags-ignore pattern to double wildcard and add branches pattern --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 50f390f..f907409 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,7 +2,9 @@ name: build on: push: tags-ignore: - - '*' + - '**' + branches: + - '**' pull_request: env: SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }}