1
0
mirror of https://github.com/xorcare/testing-go-code-with-postgres.git synced 2025-06-30 23:23:40 +02:00

Update dependabot-auto-merge.yml

Using single quotes is safer compared to double quotes.

Signed-off-by: Vasiliy Vasilyuk <xorcare@gmail.com>
This commit is contained in:
Vasiliy Vasilyuk
2025-01-02 11:26:13 +03:00
parent 28a36d13d1
commit a6c7a238ed

View File

@ -11,6 +11,6 @@ jobs:
if: github.actor == 'dependabot[bot]'
steps:
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "${{ github.event.pull_request.html_url }}"
run: gh pr merge --auto --merge '${{ github.event.pull_request.html_url }}'
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}