Skip to content

Commit c1e0674

Browse files
Merge branch 'master' into release/1.12.1
2 parents f8c3a6a + eb151cc commit c1e0674

File tree

2 files changed

+28
-5
lines changed

2 files changed

+28
-5
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: "Detect Merge Conflicts"
2+
on:
3+
workflow_dispatch:
4+
push:
5+
branch:
6+
- dev
7+
- master
8+
- release/*
9+
10+
pull_request_target:
11+
types: [synchronize]
12+
13+
jobs:
14+
main:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: check if prs are conflicted
18+
uses: eps1lon/actions-label-merge-conflict@releases/2.x
19+
with:
20+
dirtyLabel: "conflicts-detected"
21+
repoToken: "${{ secrets.GITHUB_TOKEN }}"
22+
commentOnDirty: "This pull request has conflicts, please resolve those before we can evaluate the pull request."
23+
commentOnClean: "Conflicts have been resolved. A maintainer will review the pull request shortly."

.github/workflows/new-release-pr.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
create_pr:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- name: Login to DockerHub
23-
uses: docker/login-action@v1
24-
with:
25-
username: ${{ secrets.DOCKERHUB_USERNAME }}
26-
password: ${{ secrets.DOCKERHUB_TOKEN }}
22+
# - name: Login to DockerHub
23+
# uses: docker/login-action@v1
24+
# with:
25+
# username: ${{ secrets.DOCKERHUB_USERNAME }}
26+
# password: ${{ secrets.DOCKERHUB_TOKEN }}
2727
- name: Checkout from_branch branch
2828
uses: actions/checkout@v2
2929
with:

0 commit comments

Comments
 (0)