chore(deps): bump wpackagist-plugin/wp-mail-smtp from 4.2.0 to 4.3.0 #826
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
# This workflow automatically merges Dependabot PRs into the CBF WordPress application | |
name: PR Auto Merge | |
# Controls when the action will run. Triggers the workflow on pull request events | |
on: | |
pull_request: | |
branches: [ develop ] | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
merge: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: ahmadnassri/[email protected] | |
with: | |
target: patch | |
github-token: ${{ secrets.ADMIN_GITHUB_TOKEN }} |