# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # name: Issue Labeler on: issues: types: [opened] jobs: label: runs-on: ubuntu-latest permissions: issues: write steps: - name: Add labels issues automatically based on their body. uses: actions/github-script@v7 with: script: | const body = context.payload.issue.body; const bodySplit = body.split(/\[|\]/).map(e => e.toLowerCase()); const oskeywords = ['os: other', 'os: bsd', 'os: Linux', 'os: mac', 'os: windows']; const archkeywords1 = ['arch: all', 'arch: arm', 'arch: arm64', 'arch: avr', 'arch: ceva']; const archkeywords2 = ['arch: hc', 'arch: mips', 'arch: misoc', 'arch: openrisc', 'arch:renesas']; const archkeywords3 = ['arch: risc-v', 'arch: simulator', 'arch: sparc', 'arch: tricore']; const archkeywords4 = ['arch: x86', 'arch: x86_64', 'arch: xtensa', 'arch: z16', 'arch: z80', 'arch:renesas']; const areakeywords1 = ['area: applications', 'area: api', 'area: board support', 'area: build system']; const areakeywords2 = ['area: configuring', 'area: debugging', 'area: drivers', 'area: file system', 'area: installing', 'area: kconfig']; const areakeywords3 = ['area: kernel', 'area: memory management', 'area: native port', 'area: networking']; const areakeywords4 = ['area: os components', 'area: posix', 'area: sensors', 'area: specific peripheral']; const keywords = [...oskeywords, ...archkeywords1, ...archkeywords2, ...archkeywords3, ...archkeywords4, ...areakeywords1, ...areakeywords2, ...areakeywords3, ...areakeywords4]; var keywordsfound = new Set(); for (const keyword of keywords) { if (bodySplit.includes(keyword)) { keywordsfound.add(keyword) } } if (keywordsfound.size !== 0) { github.rest.issues.addLabels({ owner: context.repo.owner, repo: context.repo.repo, issue_number: context.issue.number, labels: Array.from(keywordsfound) }) }