mirror of
https://github.com/crazy-max/ghaction-import-gpg.git
synced 2024-11-06 05:35:51 -05:00
41 lines
920 B
YAML
41 lines
920 B
YAML
name: automerge
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- labeled
|
|
- reopened
|
|
- unlocked
|
|
- unlabeled
|
|
- synchronize
|
|
pull_request_review:
|
|
types:
|
|
- submitted
|
|
check_suite:
|
|
types:
|
|
- completed
|
|
status: {}
|
|
|
|
jobs:
|
|
dependabot:
|
|
runs-on: ubuntu-latest
|
|
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
|
|
steps:
|
|
-
|
|
name: Automerge
|
|
uses: pascalgn/automerge-action@v0.8.1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
MERGE_LABELS:
|
|
MERGE_METHOD: squash
|
|
MERGE_COMMIT_MESSAGE: automatic
|
|
-
|
|
name: Dispatch event
|
|
uses: actions/github-script@0.9.0
|
|
with:
|
|
github-token: ${{secrets.GITHUB_TOKEN}}
|
|
script: |
|
|
github.repos.createDispatchEvent({
|
|
...context.repo,
|
|
event_type: 'ncc'
|
|
})
|