Skip to content

fix(deps): update module golang.org/x/sys to v0.47.0 #1424

fix(deps): update module golang.org/x/sys to v0.47.0

fix(deps): update module golang.org/x/sys to v0.47.0 #1424

Workflow file for this run

name: Renovate auto-merge

Check failure on line 1 in .github/workflows/renovate_bot.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/renovate_bot.yml

Invalid workflow file

(Line: 2, Col: 4): Unexpected value ''
on:
#- pull_request_target
permissions:
contents: write
pull-requests: write
packages: read
jobs:
renovate:
runs-on: ubuntu-latest
if: ${{ github.actor == 'renovate[bot]' }}
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Approve a PR if not already approved
run: |
gh pr checkout "$PR_URL"
if [ "$(gh pr status --json reviewDecision -q .currentBranch.reviewDecision)" != "APPROVED" ];
then
gh pr review --approve "$PR_URL"
else
echo "PR already approved.";
fi
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Enable auto-merge for Renovate PRs
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}