deps: update dependency diagram-js to v15 #834
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: COMMENT_DEVELOP_FIX | |
on: | |
pull_request: | |
types: | |
- opened | |
branches: | |
- develop | |
permissions: | |
pull-requests: write | |
jobs: | |
comment: | |
name: Comment on fix to develop | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check for fix commits | |
env: | |
COMMITS_URL: ${{ github.event.pull_request.commits_url }} | |
run: | | |
echo "Checking commits via $COMMITS_URL" | |
if [[ $(curl $COMMITS_URL) =~ ."\"message\": \"fix".* ]] | |
then | |
echo "FIX_COMMITS_PRESENT=true" >> $GITHUB_ENV | |
else | |
echo "FIX_COMMITS_PRESENT=false" >> $GITHUB_ENV | |
fi | |
- name: Create comment | |
if: ${{ env.FIX_COMMITS_PRESENT == 'true' }} | |
uses: peter-evans/create-or-update-comment@6f2ce0ef39607bc6465c7fdf93368dc08095f938 | |
with: | |
issue-number: ${{ github.event.number }} | |
body: | | |
This Pull Request targets `develop` branch, but contains `fix` commits. | |
Consider targeting `main` instead. |