1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-01-20 18:52:16 +00:00
kyverno/.github/workflows/pr-update.yaml
Sambhav Kothari 266bfa1077
Fix PR update flow and allow updates from release branches (#3780)
Signed-off-by: Sambhav Kothari <skothari44@bloomberg.net>
2022-05-03 16:03:43 +08:00

22 lines
539 B
YAML

name: PR update
on:
push:
branches:
- 'main'
- 'release-*'
jobs:
autoupdate:
permissions:
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: Automatically update PR
uses: adRise/update-pr-branch@437fab6e0ac7d2a668f2c479f64225edd7f303fd # v0.6.0
with:
token: ${{ secrets.PR_UPDATE_TOKEN }}
base: ${{ env.GITHUB_REF_NAME }}
required_approval_count: 1
require_passed_checks: true
sort: 'updated'
direction: 'asc'