mirror of
https://github.com/long2ice/fastapi-cache.git
synced 2026-03-24 20:47:54 +00:00
The auto-merge workflow automatically approves dependabot PRs that update dependencies or github actions where the semver difference is at most a minor upgrade. These PRs are then auto-merged once the CI checks have passed. The labeller workflow adds / removes the auto-merge label to make auto-merging more visible in issue lists and to make it possible to filter such PRs. This workflow is unfortunately not triggered when the auto-approve workflow enables auto-merging due to GH anti- recursion rules, so the auto-merge workflow adds the label explicitly.
31 lines
809 B
YAML
31 lines
809 B
YAML
name: Labeller
|
|
on:
|
|
pull_request_target:
|
|
types:
|
|
- auto_merge_disabled
|
|
- auto_merge_enabled
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
add_remove_labels:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
steps:
|
|
- name: Add auto-merge label
|
|
if: github.event.action == 'auto_merge_enabled'
|
|
run: gh pr edit "$PR_URL" --add-label "auto-merge"
|
|
env:
|
|
PR_URL: ${{github.event.pull_request.html_url}}
|
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
|
|
|
- name: Remove auto-merge label
|
|
if: github.event.action == 'auto_merge_disabled'
|
|
run: gh pr edit "$PR_URL" --remove-label "auto-merge"
|
|
env:
|
|
PR_URL: ${{github.event.pull_request.html_url}}
|
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|