aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/label-bug-fix.yml
blob: f25633f754c6a65c013e51ef7197ba6f0545e5c2 (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
34
35
36
37
38
39
40
41
42
43
name: "Bug Fix label"
on:
    pull_request:
        types: [ opened, edited, labeled ]

permissions:
    issues: write

jobs:
    assign-label:
        runs-on: ubuntu-latest
        steps:
            -   name: label
                env:
                    TITLE: ${{ github.event.pull_request.title }}
                    LABEL: Bug Fix - Sooner than Very Soon
                uses: actions/github-script@v7
                with:
                    github-token: "${{ secrets.GITHUB_TOKEN }}"
                    script: |
                        if(process.env.TITLE.split(":")[0].toUpperCase().includes("FIX")){
                          github.rest.issues.addLabels({
                            issue_number: context.issue.number,
                            owner: context.repo.owner,
                            repo: context.repo.repo,
                            labels: [process.env.LABEL]
                          })
                        }else{
                          const {data} = await github.rest.issues.listLabelsOnIssue({
                            issue_number: context.issue.number,
                            owner: context.repo.owner,
                            repo: context.repo.repo,
                          })
                          const filtered = data.filter(label => label.name == process.env.LABEL)
                          if(filtered.length == 1){
                            github.rest.issues.removeLabel({
                              issue_number: context.issue.number,
                              owner: context.repo.owner,
                              repo: context.repo.repo,
                              name: process.env.LABEL
                            })
                          }
                        }