docs: add new document for hello operator #2876
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Gitlint | |
on: [pull_request] | |
jobs: | |
gitlint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Install gitlint | |
run: | | |
sudo apt-get update | |
sudo apt install gitlint | |
- name: Run gitlint | |
shell: bash | |
run: | | |
pr_number=$(echo $GITHUB_REF | awk 'BEGIN { FS = "/" } ; { print $3 }') | |
messages="$(curl --silent --show-error \ | |
--header "${{ env.AUTH_HEADER }}" \ | |
--header "Accept: application/vnd.github.v3+json" \ | |
"https://api.github.com/repos/${GITHUB_REPOSITORY}/pulls/${pr_number}/commits")" | |
len=$(echo $messages | jq length) | |
result=true | |
for i in $( seq 0 $(($len - 1)) ); do | |
message=$(echo $messages | jq -r .[$i].commit.message) | |
echo "commit message: $message" | |
status=0 | |
echo $message | gitlint -C ./.github/workflows/.gitlint || status=$? | |
if [ $status -ne 0 ]; then | |
result=false | |
fi | |
done | |
if ! ${result} ; then | |
echo "Some of the commit messages are not structured as The Conventional Commits specification. Please check CONTRIBUTING.md for our process on PR." | |
exit 1 | |
fi | |
echo "success" |