mirror of
https://github.com/Zagrios/bs-manager.git
synced 2026-07-03 14:08:25 +02:00
25 lines
717 B
YAML
25 lines
717 B
YAML
name: Labeler
|
|
|
|
on:
|
|
issues:
|
|
types: [opened, edited]
|
|
|
|
jobs:
|
|
label-linux:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Add Linux label
|
|
if: |
|
|
contains(github.event.issue.title, 'linux') ||
|
|
contains(github.event.issue.body, 'linux') ||
|
|
contains(github.event.issue.title, 'ubuntu') ||
|
|
contains(github.event.issue.body, 'ubuntu') ||
|
|
contains(github.event.issue.title, 'arch') ||
|
|
contains(github.event.issue.body, 'arch') ||
|
|
contains(github.event.issue.title, 'kde') ||
|
|
contains(github.event.issue.body, 'kde')
|
|
uses: actions-ecosystem/action-add-labels@v1
|
|
with:
|
|
github_token: ${{ secrets.GH_TOKEN }}
|
|
labels: linux
|