Skip to content

chore(ResponseTest.java): Updated contents of string for CommandPlainSecure test #23

chore(ResponseTest.java): Updated contents of string for CommandPlainSecure test

chore(ResponseTest.java): Updated contents of string for CommandPlainSecure test #23

name: Dependabot auto-merge
on:
pull_request:
types:
- opened
- synchronize
permissions:
contents: write
pull-requests: write
deployements: write

Check failure on line 11 in .github/workflows/auto-merge-dependabot-pr.yml

View workflow run for this annotation

GitHub Actions / Dependabot auto-merge

Invalid workflow file

The workflow is not valid. .github/workflows/auto-merge-dependabot-pr.yml (Line: 11, Col: 3): Unexpected value 'deployements'
jobs:
tests:
uses: ./.github/workflows/test.yml
secrets: inherit
dependabot:
name: Auto-merge Dependabot PR
runs-on: ${{ vars.RTLDEV_MW_CI_OS }}
needs: tests
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for Dependabot PRs
# (fixes, features but not major upgrades!)
if: ${{steps.metadata.outputs.update-type == 'version-update:semver-patch' || steps.metadata.outputs.update-type == 'version-update:semver-minor'}}
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.RTLDEV_MW_CI_TOKEN}}