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
Description: We need to create a custom GitHub action that provides a shell script to validate PR titles. This would ensure consistency in PR naming conventions and improve the overall workflow.
Idea
We might need add here:
name: "PR Title Validator"
description: "Validates PR titles based on predefined conventions."
inputs:
github-token:
description: "GitHub Token"
required: true
runs:
using: "bash"
main: "entrypoint.sh" <-- And add the shell script
therefore, people could use it like
jobs:
pr-title-check:
runs-on: ubuntu-lateststeps:
- name: Checkout repositoryuses: actions/checkout@v2
- name: Run PR Title Validator from kubebuilder-release-toolsuses: kubernetes-sigs/kubebuilder-release-tools/.github/actions/pr-title-checker@mainwith:
github-token: ${{ secrets.GITHUB_TOKEN }}
Context:
Refer to this PR.
Discussion thread: Slack thread.
Description: We need to create a custom GitHub action that provides a shell script to validate PR titles. This would ensure consistency in PR naming conventions and improve the overall workflow.
Idea
We might need add here:
therefore, people could use it like
Then we need to
The text was updated successfully, but these errors were encountered: