mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 17:04:32 +04:00
ci: add more labels
Add 'Add package' label when a new Makefile is added or 'Drop package' when a Makefile is deleted. Label PRs to OpenWrt 25.12 branch. Label CI-related PRs. Signed-off-by: George Sapkin <george@sapk.in>
This commit is contained in:
committed by
Josef Schlehofer
parent
0bb3db019a
commit
c7ccba0cf2
9
.github/labeler.yml
vendored
9
.github/labeler.yml
vendored
@@ -1,3 +1,9 @@
|
|||||||
|
# GitHub/CI
|
||||||
|
"GitHub/CI":
|
||||||
|
- changed-files:
|
||||||
|
- any-glob-to-any-file:
|
||||||
|
- ".github/**"
|
||||||
|
|
||||||
# branches
|
# branches
|
||||||
"OpenWrt 23.05 (end of support)":
|
"OpenWrt 23.05 (end of support)":
|
||||||
- base-branch:
|
- base-branch:
|
||||||
@@ -5,3 +11,6 @@
|
|||||||
"OpenWrt 24.10":
|
"OpenWrt 24.10":
|
||||||
- base-branch:
|
- base-branch:
|
||||||
- "openwrt-24.10"
|
- "openwrt-24.10"
|
||||||
|
"OpenWrt 25.12":
|
||||||
|
- base-branch:
|
||||||
|
- "openwrt-25.12"
|
||||||
|
|||||||
62
.github/workflows/labeler.yml
vendored
62
.github/workflows/labeler.yml
vendored
@@ -1,6 +1,6 @@
|
|||||||
name: 'Pull Request Labeler'
|
name: 'Pull Request Labeler'
|
||||||
on:
|
on:
|
||||||
- pull_request_target
|
pull_request_target:
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
@@ -8,10 +8,6 @@ permissions:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
labeler:
|
labeler:
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
pull-requests: write
|
|
||||||
|
|
||||||
name: Pull Request Labeler
|
name: Pull Request Labeler
|
||||||
runs-on: ubuntu-slim
|
runs-on: ubuntu-slim
|
||||||
steps:
|
steps:
|
||||||
@@ -19,3 +15,59 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
repo-token: '${{ secrets.GITHUB_TOKEN }}'
|
repo-token: '${{ secrets.GITHUB_TOKEN }}'
|
||||||
sync-labels: true
|
sync-labels: true
|
||||||
|
|
||||||
|
- name: Checkout PR code
|
||||||
|
uses: actions/checkout@v5
|
||||||
|
with:
|
||||||
|
ref: ${{ github.event.pull_request.head.sha }}
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Fetch base
|
||||||
|
run: git fetch origin ${{ github.event.pull_request.base.sha }}
|
||||||
|
|
||||||
|
- name: Check for PKG_VERSION changes
|
||||||
|
id: check_version
|
||||||
|
# Check for new packages (any Makefile with status 'A' - Added)
|
||||||
|
# Check for dropped packages (any Makefile with status 'D' - Deleted)
|
||||||
|
run: |
|
||||||
|
if git diff --name-only --diff-filter=A "${{ github.event.pull_request.base.sha }}"...HEAD -- '**/Makefile' | grep -q .; then
|
||||||
|
echo "New package detected."
|
||||||
|
echo "new_package=true" >> $GITHUB_OUTPUT
|
||||||
|
fi
|
||||||
|
|
||||||
|
if git diff --name-only --diff-filter=D "${{ github.event.pull_request.base.sha }}"...HEAD -- '**/Makefile' | grep -q .; then
|
||||||
|
echo "Dropped package detected."
|
||||||
|
echo "dropped_package=true" >> $GITHUB_OUTPUT
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Add 'Add package' label
|
||||||
|
if: steps.check_version.outputs.new_package == 'true'
|
||||||
|
uses: buildsville/add-remove-label@v2.0.1
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
labels: "Add package"
|
||||||
|
type: add
|
||||||
|
|
||||||
|
- name: Remove 'Add package' label
|
||||||
|
if: steps.check_version.outputs.new_package != 'true'
|
||||||
|
uses: buildsville/add-remove-label@v2.0.1
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
labels: "Add package"
|
||||||
|
type: remove
|
||||||
|
|
||||||
|
- name: Add 'Drop package' label
|
||||||
|
if: steps.check_version.outputs.dropped_package == 'true'
|
||||||
|
uses: buildsville/add-remove-label@v2.0.1
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
labels: "Drop package"
|
||||||
|
type: add
|
||||||
|
|
||||||
|
- name: Remove 'Drop package' label
|
||||||
|
if: steps.check_version.outputs.dropped_package != 'true'
|
||||||
|
uses: buildsville/add-remove-label@v2.0.1
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
labels: "Drop package"
|
||||||
|
type: remove
|
||||||
|
|||||||
Reference in New Issue
Block a user