Skip to content

Commit 08ee4d2

Browse files
author
Pankaj Agrawal
committed
chore: wait for merge until check is green
1 parent 8d6bc5f commit 08ee4d2

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/auto-merge.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,13 @@ jobs:
99
merge-me:
1010
name: Merge me!
1111
runs-on: ubuntu-latest
12-
if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' && github.actor == 'dependabot[bot]'
12+
if: github.event.workflow_run.event == 'pull_request' && github.actor == 'dependabot[bot]'
1313
steps:
14+
- name: 'Wait until build and static code check is success'
15+
- uses: actions/checkout@v2
16+
- uses: ahmadnassri/action-workflow-run-wait@v1
17+
with:
18+
timeout: 300000
1419
- name: 'Download artifact'
1520
uses: actions/[email protected]
1621
with:

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@
408408
<plugin>
409409
<groupId>com.github.spotbugs</groupId>
410410
<artifactId>spotbugs-maven-plugin</artifactId>
411-
<version>4.3.0</version>
411+
<version>4.2.2</version>
412412
<executions>
413413
<execution>
414414
<id>test</id>

0 commit comments

Comments
 (0)