You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if [[ "${{ github.event.pull_request.user.login }}" == "aws-application-signals-bot" ]]; then
30
+
echo "Skipping check: PR from aws-application-signals-bot"
31
+
exit 0
32
+
fi
33
+
34
+
if [[ "${{ github.event.pull_request.user.login }}" == "dependabot[bot]" ]]; then
35
+
echo "Skipping check: PR from dependabot"
36
+
exit 0
37
+
fi
38
+
39
+
# Check for skip changelog label
40
+
if echo '${{ toJSON(github.event.pull_request.labels.*.name) }}' | jq -r '.[]' | grep -q "skip changelog"; then
41
+
echo "Skipping check: skip changelog label found"
42
+
exit 0
43
+
fi
44
+
45
+
# Fetch base branch and check for CHANGELOG modifications
46
+
git fetch origin ${{ github.base_ref }}
47
+
if git diff --name-only origin/${{ github.base_ref }}..HEAD | grep -q "CHANGELOG.md"; then
48
+
echo "CHANGELOG.md entry found - check passed"
49
+
exit 0
50
+
fi
51
+
52
+
echo "It looks like you didn't add an entry to CHANGELOG.md. If this change affects the SDK behavior, please update CHANGELOG.md and link this PR in your entry. If this PR does not need a CHANGELOG entry, you can add the 'Skip Changelog' label to this PR."
All notable changes to this project will be documented in this file.
4
+
5
+
> **Note:** This CHANGELOG was created starting from version 0.12.0. Earlier changes are not documented here.
6
+
7
+
For any change that affects end users of this package, please add an entry under the **Unreleased** section. Briefly summarize the change and provide the link to the PR. Example:
8
+
- add GenAI attribute support for Amazon Bedrock models
0 commit comments