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
- name: Check for Change File(s) in .autover/changes/
22
+
run: |
23
+
DIRECTORY=".autover/changes/"
24
+
if echo "${{ steps.changed-files.outputs.all_changed_files }}" | grep -q "$DIRECTORY"; then
25
+
echo "✅ One or more change files in '$DIRECTORY' are included in this PR."
26
+
else
27
+
echo "❌ No change files in '$DIRECTORY' are included in this PR."
28
+
echo "Refer to the 'Adding a change file to your contribution branch' section of https://github.com/aws/aws-aspnet-cognito-identity-provider/blob/master/CONTRIBUTING.md"
0 commit comments