-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enhancement: Restore auto-merge of dependabot pull requests
- Loading branch information
1 parent
304c947
commit 78c7552
Showing
4 changed files
with
95 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -367,97 +367,3 @@ jobs: | |
|
||
- name: "Run composer-normalize.phar with argument and options" | ||
run: "${{ env.COMPOSER_NORMALIZE_PHAR }} --dry-run composer.json" | ||
|
||
merge: | ||
name: "Merge" | ||
|
||
runs-on: "ubuntu-latest" | ||
|
||
needs: | ||
- "code-coverage" | ||
- "coding-standards" | ||
- "compile-phar" | ||
- "dependency-analysis" | ||
- "static-code-analysis" | ||
- "tests" | ||
|
||
if: > | ||
github.event_name == 'pull_request' && | ||
github.event.pull_request.draft == false && ( | ||
github.event.action == 'opened' || | ||
github.event.action == 'reopened' || | ||
github.event.action == 'synchronize' | ||
) && ( | ||
(github.actor == 'dependabot[bot]' && startsWith(github.event.pull_request.title, 'composer(deps-dev)')) || | ||
(github.actor == 'dependabot[bot]' && startsWith(github.event.pull_request.title, 'github-actions(deps)')) || | ||
(github.actor == 'localheinz' && contains(github.event.pull_request.labels.*.name, 'merge')) | ||
) | ||
steps: | ||
- name: "Request review from @ergebnis-bot" | ||
uses: "actions/[email protected]" | ||
with: | ||
github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" | ||
script: | | ||
const pullRequest = context.payload.pull_request | ||
const repository = context.repo | ||
const reviewers = [ | ||
"ergebnis-bot", | ||
] | ||
await github.pulls.requestReviewers({ | ||
owner: repository.owner, | ||
pull_number: pullRequest.number, | ||
repo: repository.repo, | ||
reviewers: reviewers, | ||
}) | ||
- name: "Assign @ergebnis-bot" | ||
uses: "actions/[email protected]" | ||
with: | ||
github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" | ||
script: | | ||
const pullRequest = context.payload.pull_request | ||
const repository = context.repo | ||
const assignees = [ | ||
"ergebnis-bot", | ||
] | ||
await github.issues.addAssignees({ | ||
assignees: assignees, | ||
issue_number: pullRequest.number, | ||
owner: repository.owner, | ||
repo: repository.repo, | ||
}) | ||
- name: "Approve pull request" | ||
uses: "actions/[email protected]" | ||
with: | ||
github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" | ||
script: | | ||
const pullRequest = context.payload.pull_request | ||
const repository = context.repo | ||
await github.pulls.createReview({ | ||
event: "APPROVE", | ||
owner: repository.owner, | ||
pull_number: pullRequest.number, | ||
repo: repository.repo, | ||
}) | ||
- name: "Merge pull request" | ||
uses: "actions/[email protected]" | ||
with: | ||
github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" | ||
script: | | ||
const pullRequest = context.payload.pull_request | ||
const repository = context.repo | ||
await github.pulls.merge({ | ||
merge_method: "merge", | ||
owner: repository.owner, | ||
pull_number: pullRequest.number, | ||
repo: repository.repo, | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
# https://docs.github.com/en/actions | ||
|
||
name: "Merge" | ||
|
||
on: # yamllint disable-line rule:truthy | ||
workflow_run: | ||
types: | ||
- "completed" | ||
workflows: | ||
- "Integrate" | ||
|
||
jobs: | ||
merge: | ||
name: "Merge" | ||
|
||
runs-on: "ubuntu-latest" | ||
|
||
if: > | ||
github.event.workflow_run.event == 'pull_request' && | ||
github.event.workflow_run.conclusion == 'success' && | ||
github.actor == 'dependabot[bot]' && ( | ||
startsWith(github.event.workflow_run.head_commit.message, 'composer(deps-dev)') || | ||
startsWith(github.event.workflow_run.head_commit.message, 'github-actions(deps)') | ||
) | ||
steps: | ||
|
||
- name: "Request review from @ergebnis-bot" | ||
uses: "actions/[email protected]" | ||
with: | ||
github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" | ||
script: | | ||
const pullRequest = context.payload.workflow_run.pull_requests[0] | ||
const repository = context.repo | ||
const reviewers = [ | ||
"ergebnis-bot", | ||
] | ||
await github.pulls.requestReviewers({ | ||
owner: repository.owner, | ||
repo: repository.repo, | ||
pull_number: pullRequest.number, | ||
reviewers: reviewers, | ||
}) | ||
- name: "Assign @ergebnis-bot" | ||
uses: "actions/[email protected]" | ||
with: | ||
github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" | ||
script: | | ||
const pullRequest = context.payload.workflow_run.pull_requests[0] | ||
const repository = context.repo | ||
const assignees = [ | ||
"ergebnis-bot", | ||
] | ||
await github.issues.addAssignees({ | ||
owner: repository.owner, | ||
repo: repository.repo, | ||
assignees: assignees, | ||
issue_number: pullRequest.number | ||
}) | ||
- name: "Approve pull request" | ||
uses: "actions/[email protected]" | ||
with: | ||
github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" | ||
script: | | ||
const pullRequest = context.payload.workflow_run.pull_requests[0] | ||
const repository = context.repo | ||
await github.pulls.createReview({ | ||
event: "APPROVE", | ||
owner: repository.owner, | ||
repo: repository.repo, | ||
pull_number: pullRequest.number, | ||
}) | ||
- name: "Merge pull request" | ||
uses: "actions/[email protected]" | ||
with: | ||
github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" | ||
script: | | ||
const pullRequest = context.payload.workflow_run.pull_requests[0] | ||
const repository = context.repo | ||
await github.pulls.merge({ | ||
merge_method: "merge", | ||
owner: repository.owner, | ||
pull_number: pullRequest.number, | ||
repo: repository.repo, | ||
}) |