mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
61 lines
2.0 KiB
YAML
61 lines
2.0 KiB
YAML
name: Automatic Pull Request Labeling
|
|
run-name: 'Set labels - PR #${{ github.event.pull_request.number }} ("${{ github.event.pull_request.title }}")'
|
|
#
|
|
# Set labels for pull requests automatically based on size (modified via job 'label-size') and file categories (modified via .github/labeler)
|
|
#
|
|
|
|
on: pull_request_target
|
|
|
|
jobs:
|
|
label-remove:
|
|
permissions:
|
|
contents: read # for pascalgn/size-label-action to determine modified files
|
|
pull-requests: write # for pascalgn/size-label-action to add labels to PRs
|
|
name: "Remove Ready to merge"
|
|
if: ${{ github.event.action == 'opened' || github.event.action == 'reopened' || github.event.action == 'synchronize' }}
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: PauMAVA/add-remove-label-action@v1.0.3
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
add: ""
|
|
remove: "Ready to merge"
|
|
|
|
label-category:
|
|
permissions:
|
|
contents: read # for actions/labeler to determine modified files
|
|
pull-requests: write # for actions/labeler to add labels to PRs
|
|
|
|
name: "Category labels"
|
|
if: ${{ github.event.action == 'opened' || github.event.action == 'reopened' || github.event.action == 'synchronize' }}
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/labeler@v5
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
|
|
label-size:
|
|
permissions:
|
|
contents: read # for pascalgn/size-label-action to determine modified files
|
|
pull-requests: write # for pascalgn/size-label-action to add labels to PRs
|
|
|
|
name: "Size label"
|
|
if: ${{ github.event.action == 'opened' || github.event.action == 'reopened' || github.event.action == 'synchronize' }}
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: size-label
|
|
uses: "pascalgn/size-label-action@v0.5.5"
|
|
env:
|
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
|
with:
|
|
sizes: >
|
|
{
|
|
"0": "small",
|
|
"50": "medium",
|
|
"250": "large"
|
|
}
|