Skip to content

[TASK]: Bump stylelint from 16.25.0 to 16.26.0 in /packages/typo3-docs-theme #1098

[TASK]: Bump stylelint from 16.25.0 to 16.26.0 in /packages/typo3-docs-theme

[TASK]: Bump stylelint from 16.25.0 to 16.26.0 in /packages/typo3-docs-theme #1098

Workflow file for this run

# https://docs.github.com/en/github-ae@latest/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions
name: Auto-merge
on:
# We're using pull_request_target instead of pull_request due to permission issues with the pull_request target:
# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions#responding-to-events
pull_request_target:
jobs:
auto-merge:
name: Dependabot auto-merge
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@d7267f607e9d3fb96fc2fbe83e0af444713e90b7
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge
if: steps.metadata.outputs.update-type == 'version-update:semver-patch' || steps.metadata.outputs.update-type == 'version-update:semver-minor'
run: gh pr merge -R "${{ github.repository }}" --squash --auto "${{ github.event.pull_request.number }}"
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}