Skip to content

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

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

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

name: Dependabot auto-merge
on:
pull_request:
types:
- opened
- synchronize
jobs:
tests:
uses: ./.github/workflows/test.yml

Check failure on line 10 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. In .github/workflows/auto-merge-dependabot-pr.yml (Line: 10, Col: 11): Error from called workflow centralnicgroup-opensource/rtldev-middleware-java-sdk/.github/workflows/test.yml@d98984800580c70b6e96ff487114761edd5f6cb9 (Line: 31, Col: 14): Unexpected value ''
secrets: inherit
permissions:
contents: read
dependabot:
name: Auto-merge Dependabot PR
runs-on: ${{ vars.RTLDEV_MW_CI_OS }}
needs: tests
permissions:
contents: write
pull-requests: write
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.GITHUB_TOKEN}}