Fix proxy protocol for Health Check frontend & Set stick-table size to IPv6 #34
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: Auto-merge dependency PRs | |
on: pull_request_target | |
permissions: | |
pull-requests: write | |
contents: write | |
jobs: | |
dependencies: | |
runs-on: ubuntu-latest | |
if: github.actor == 'dependabot[bot]' | |
steps: | |
- name: Approve | |
run: gh pr review "${{ github.event.pull_request.html_url }}" --approve --body "Auto-approving dependency bump." | |
env: | |
GH_TOKEN: ${{ secrets.CFN_CI_PAT }} | |
- name: Enable auto-merge | |
run: gh pr merge "${{ github.event.pull_request.html_url }}" --auto --rebase | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |