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 you wish to cut a release once this PR is merged, please add the `release` label to this PR.
259
261
260
262
DIFF_NOTICE: |
261
-
## Cutting a Release (and modifying non-markdown files)
263
+
## Cutting a Release (and modifying code files)
262
264
263
-
This PR is modifying both `${{ matrix.source }}` and non-markdownfiles.
265
+
This PR is modifying both `${{ matrix.source }}` and code files (not markdown, YAML, TOML or lock files).
264
266
The Release Checker is not able to analyse files that are not checked in to `${{ fromJSON(steps.pr.outputs.json).base.ref }}`. This might cause the above analysis to be inaccurate.
265
267
Please consider performing all the code changes in a separate PR before cutting the release.
266
268
@@ -297,7 +299,7 @@ jobs:
297
299
else
298
300
echo "$BODY_ALT" >> $GITHUB_OUTPUT
299
301
fi
300
-
diff="$(gh api -X GET "repos/$GITHUB_REPOSITORY/compare/$BASE_REF...$HEAD_LABEL" --jq '.files | map(.filename)' | jq -r --arg source "$SOURCE" 'map(select(test("^(\($source)|.*\\.md)$") | not)) | .[]')"
302
+
diff="$(gh api -X GET "repos/$GITHUB_REPOSITORY/compare/$BASE_REF...$HEAD_LABEL" --jq '.files | map(.filename)' | jq -r --arg source "$SOURCE" 'map(select(test("^(\($source)|.*\\.md|.*\\.ya?ml|.*\\.toml|.*\\.lock|.*-lock\\.json|go\\.sum)$") | not)) | .[]')"
0 commit comments