Skip to content

Commit 880cce0

Browse files
authored
Merge branch 'main' into explore-cytoscape-merge
2 parents 2d2c3fe + dab480d commit 880cce0

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

.github/labeler.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
cli:
2+
- "cli/**"
3+
shared:
4+
- "shared/**"
5+
docs:
6+
- "docs/**"
7+
calm-hub:
8+
- "calm-hub/**"
9+
calm:
10+
- "calm/**"
11+
config:
12+
- "pom.xml"
13+
- "**/package.json"
14+
- "**/package-lock.json"

.github/workflows/pr-labelling.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: PR Labeler
2+
3+
on:
4+
pull_request_target:
5+
types: [opened, synchronize]
6+
7+
jobs:
8+
label:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v4
14+
15+
- name: Label PR based on changes
16+
uses: actions/labeler@v4
17+
with:
18+
repo-token: "${{ secrets.GITHUB_TOKEN }}"

0 commit comments

Comments
 (0)