Skip to content

plugins/ism: Fix error notification types #1610

plugins/ism: Fix error notification types

plugins/ism: Fix error notification types #1610

Workflow file for this run

name: Dependabot PR actions
on:
pull_request:
types:
- opened
- reopened
- synchronize
- labeled
- unlabeled
jobs:
dependabot:
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: GitHub App token
id: app-token
uses: actions/create-github-app-token@v1
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
- name: Check out code
uses: actions/checkout@v4
with:
token: ${{ steps.app-token.outputs.token }}
- name: Update the changelog
uses: dangoslen/dependabot-changelog-helper@v3
with:
version: 'Unreleased'
- name: Install dependencies
run: npm i -g prettier
- name: Format markdown files with prettier
run: prettier --prose-wrap never --write **/*.md
- name: Commit the changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Update changelog"
branch: ${{ github.head_ref }}
commit_user_name: dependabot[bot]
commit_user_email: [email protected]
commit_options: '--signoff'