Update all #2062
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: Octocat commits check | |
on: | |
# ATTENTION: See https://securitylab.github.com/research/github-actions-preventing-pwn-requests/ | |
# re security implications of using this trigger; in particular, no code from PR branches must | |
# be executed in any flows triggered by it | |
pull_request_target: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check if octocat commits are present? | |
id: octocat | |
env: | |
pull_request_number: ${{ github.event.pull_request.number }} | |
run: | | |
curl --silent -X "GET" https://api.github.com/repos/debezium/debezium-ui/pulls/$pull_request_number/commits | jq '.[] | {author: .author.login}' | jq -r '.author' >> SORTED_AUTHORS.txt | |
while IFS=" " read -r AUTHOR; | |
do | |
if [[ $AUTHOR == *"null"* ]]; then | |
echo "name=OCTOCAT_COMMIT_FOUND::true" >> $GITHUB_OUTPUT | |
fi | |
done < SORTED_AUTHORS.txt | |
- name: Create comment | |
if: ${{ steps.octocat.outputs.OCTOCAT_COMMIT_FOUND == 'true' }} | |
uses: peter-evans/create-or-update-comment@v4 | |
with: | |
issue-number: ${{ github.event.pull_request.number }} | |
body: | | |
Hi @${{ github.event.pull_request.user.login }}. Thank you for your valuable contribution. | |
Please author your commit(s) using an email [linked to your GitHub account](https://docs.github.com/en/account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/why-are-my-contributions-not-showing-up-on-my-profile). |