Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions .github/workflows/add_code_review_label.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
name: Add Code Review Label on Review Request

name: Add code-review label
run-name: Add code-review label to PR on review requested
on:
pull_request:
types: [review_requested, ready_for_review]
pull_request_target:
types: [review_requested]
workflow_call:

jobs:
add-review-label:
Expand Down Expand Up @@ -53,4 +50,4 @@ jobs:
console.error('❌ Error adding label:', error);
throw error;
}
}
}
3 changes: 2 additions & 1 deletion .github/workflows/check_auth.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: check-auth
name: Check authentication
run-name: Check authentication
on:
workflow_call:

Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/check_tests.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@

name: check_tests
name: Check YAML files
run-name: Check YAML tests have been added/updated to PR
on:
pull_request:
types: [opened, reopened, synchronize, labeled, unlabeled]
workflow_call:

jobs:
# Check if at least 1 YAML file has been changed
check_changed_templates:
Expand Down Expand Up @@ -48,4 +47,4 @@ jobs:
else
echo "YAML files NOT updated"
exit 1
fi
fi
11 changes: 4 additions & 7 deletions .github/workflows/remove_code_review_label.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
name: Remove Code Review Label on Review Comments

name: Remove code-review label
run-name: Remove code-review label from PR on review comments
on:
pull_request_review:
types: [submitted]
pull_request_review_comment:
types: [created]
workflow_call:

jobs:
remove-review-label:
Expand Down Expand Up @@ -58,4 +55,4 @@ jobs:
console.error('❌ Error removing label:', error);
throw error;
}
}
}
Loading