mirror of https://github.com/Icinga/L10n.git
22 lines
485 B
YAML
22 lines
485 B
YAML
name: Automatic Merge
|
|
|
|
on:
|
|
schedule:
|
|
# Every day at midnight
|
|
- cron: "0 0 * * *"
|
|
|
|
jobs:
|
|
merge:
|
|
name: Automatic pull request merges
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'Icinga/L10n'
|
|
|
|
steps:
|
|
- name: Merge ready PRs
|
|
uses: pascalgn/automerge-action@v0.14.3
|
|
env:
|
|
GITHUB_TOKEN: "${{ secrets.ICINGABOT_TOKEN }}"
|
|
MERGE_LABELS: "automation"
|
|
MERGE_METHOD: "squash"
|
|
MERGE_DELETE_BRANCH: "true"
|