Skip to content

Commit 336f862

Browse files
authored
Merge branch 'master' into fix_lit_docs
2 parents da7e943 + f1e28d1 commit 336f862

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

.github/workflows/ci_dockers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on: # Trigger the workflow on push or pull request, but only for the master bran
1414
- "environment.yml"
1515
- "requirements.txt"
1616
- ".github/workflows/ci_dockers.yml"
17-
- ".github/workflows/nightly.yml"
17+
- ".github/workflows/events-nightly.yml"
1818
- ".github/workflows/release-docker.yml"
1919
- "setup.py"
2020

File renamed without changes.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
on:
2+
# We recommend `pull_request_target` so that github secrets are available.
3+
# In `pull_request` we wouldn't be able to change labels of fork PRs
4+
pull_request_target:
5+
types: [ synchronize ]
6+
7+
jobs:
8+
9+
# This label will then be managed by this action.
10+
# It will be added to PRs with merge conflicts and removed from PRs without conflicts.
11+
# https://github.com/mschilde/auto-label-merge-conflicts
12+
pr-label-conflicts:
13+
name: Label PR conflits
14+
runs-on: ubuntu-20.04
15+
steps:
16+
- uses: mschilde/auto-label-merge-conflicts@v2
17+
with:
18+
CONFLICT_LABEL_NAME: "has conflicts"
19+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20+
MAX_RETRIES: 3
21+
WAIT_MS: 5000

0 commit comments

Comments
 (0)