build(deps): bump braze-specification from 15428fb
to 4a537fa
#138
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
name: dependabot | |
on: pull_request_target | |
permissions: | |
pull-requests: write | |
contents: write | |
jobs: | |
dependabot: | |
runs-on: ubuntu-latest | |
if: github.actor == 'dependabot[bot]' | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
submodules: true | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
- name: Install dependencies | |
run: composer install --no-interaction --prefer-dist --optimize-autoloader | |
- name: Build library | |
run: composer build | |
- name: Git commit and push | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: 'feat(lib): generate code from braze-specification' | |
add_options: '-A' |