aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/labeler.yml
blob: 62a895a68b822f2be24e13c0fa83e48cb448d7e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: 'Pull Request Labeler'
on:
  - pull_request_target

permissions:
  contents: read

jobs:
  labeler:
    permissions:
      contents: read # to determine modified files (actions/labeler)
      pull-requests: write # to add labels to PRs (actions/labeler)

    name: Pull Request Labeler
    runs-on: ubuntu-latest
    steps:
      - uses: actions/labeler@v4
        with:
          repo-token: '${{ secrets.GITHUB_TOKEN }}'

      - name: Check Branch
        id: check-branch
        run: |
          if echo "${{ github.base_ref }}" | grep -q -E 'openwrt-[0-9][0-9]\.[0-9][0-9]'; then
              echo "apply-tag=yes" >> $GITHUB_OUTPUT
          fi

      - uses: buildsville/add-remove-label@v2.0.0
        if: ${{ steps.check-branch.outputs.apply-tag }}
        with:
          token: ${{secrets.GITHUB_TOKEN}}
          labels: ${{ github.base_ref }}
          type: add