Skip to content

Commit 560f048

Browse files
authored
Trigger release (#368)
1 parent f8cc984 commit 560f048

File tree

2 files changed

+41
-25
lines changed

2 files changed

+41
-25
lines changed

.github/workflows/publish.yml

Lines changed: 40 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -38,49 +38,65 @@ jobs:
3838
echo "PR base SHA: ${{ github.event.pull_request.base.sha }}"
3939
echo "PR head SHA: ${{ github.event.pull_request.head.sha }}"
4040
echo "Comparing changes between these commits..."
41+
echo ""
42+
echo "Files changed in PR:"
43+
git diff --name-only ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }} || echo "git diff failed"
4144
4245
- id: filter
4346
uses: dorny/paths-filter@v3
4447
with:
4548
base: ${{ github.event.pull_request.base.sha }}
4649
ref: ${{ github.event.pull_request.head.sha }}
50+
list-files: shell
4751
filters: |
4852
pkg_core:
49-
- 'packages/core/**'
50-
- '!packages/core/test/**'
53+
- 'packages/core/lib/**'
54+
- 'packages/core/package.json'
55+
- 'packages/core/README.md'
5156
pkg_amqp:
52-
- 'packages/amqp/**'
53-
- '!packages/amqp/test/**'
57+
- 'packages/amqp/lib/**'
58+
- 'packages/amqp/package.json'
59+
- 'packages/amqp/README.md'
5460
pkg_sqs:
55-
- 'packages/sqs/**'
56-
- '!packages/sqs/test/**'
61+
- 'packages/sqs/lib/**'
62+
- 'packages/sqs/package.json'
63+
- 'packages/sqs/README.md'
5764
pkg_sns:
58-
- 'packages/sns/**'
59-
- '!packages/sns/test/**'
65+
- 'packages/sns/lib/**'
66+
- 'packages/sns/package.json'
67+
- 'packages/sns/README.md'
6068
pkg_kafka:
61-
- 'packages/kafka/**'
62-
- '!packages/kafka/test/**'
69+
- 'packages/kafka/lib/**'
70+
- 'packages/kafka/package.json'
71+
- 'packages/kafka/README.md'
6372
pkg_gcp_pubsub:
64-
- 'packages/gcp-pubsub/**'
65-
- '!packages/gcp-pubsub/test/**'
73+
- 'packages/gcp-pubsub/lib/**'
74+
- 'packages/gcp-pubsub/package.json'
75+
- 'packages/gcp-pubsub/README.md'
6676
pkg_gcs_payload_store:
67-
- 'packages/gcs-payload-store/**'
68-
- '!packages/gcs-payload-store/test/**'
77+
- 'packages/gcs-payload-store/lib/**'
78+
- 'packages/gcs-payload-store/package.json'
79+
- 'packages/gcs-payload-store/README.md'
6980
pkg_s3_payload_store:
70-
- 'packages/s3-payload-store/**'
71-
- '!packages/s3-payload-store/test/**'
81+
- 'packages/s3-payload-store/lib/**'
82+
- 'packages/s3-payload-store/package.json'
83+
- 'packages/s3-payload-store/README.md'
7284
pkg_metrics:
73-
- 'packages/metrics/**'
74-
- '!packages/metrics/test/**'
85+
- 'packages/metrics/lib/**'
86+
- 'packages/metrics/package.json'
87+
- 'packages/metrics/README.md'
7588
pkg_outbox_core:
76-
- 'packages/outbox-core/**'
77-
- '!packages/outbox-core/test/**'
89+
- 'packages/outbox-core/lib/**'
90+
- 'packages/outbox-core/package.json'
91+
- 'packages/outbox-core/README.md'
7892
pkg_redis_message_deduplication_store:
79-
- 'packages/redis-message-deduplication-store/**'
80-
- '!packages/redis-message-deduplication-store/test/**'
93+
- 'packages/redis-message-deduplication-store/lib/**'
94+
- 'packages/redis-message-deduplication-store/package.json'
95+
- 'packages/redis-message-deduplication-store/README.md'
8196
pkg_schemas:
82-
- 'packages/schemas/**'
83-
- '!packages/schemas/test/**'
97+
- 'packages/schemas/lib/**'
98+
- 'packages/schemas/package.json'
99+
- 'packages/schemas/README.md'
84100
85101
- name: Debug filter output
86102
run: |

packages/core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# @message-queue-toolkit/core
2-
2+
33
Core library for message-queue-toolkit. Provides foundational abstractions, utilities, and base classes for building message queue publishers and consumers.
44

55
## Table of Contents

0 commit comments

Comments
 (0)