Skip to content

Commit

Permalink
Merge pull request #1447 from SAMZONG/main
Browse files Browse the repository at this point in the history
remove ufile.log, add automerge workflow
  • Loading branch information
samzong authored May 4, 2023
2 parents e9ce7ca + 534af57 commit ff38ea3
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 12,303 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/automerge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: automerge
on:
pull_request:
types:
- labeled
- unlabeled
- synchronize
- opened
- edited
- ready_for_review
- reopened
- unlocked
pull_request_review:
types:
- submitted
check_suite:
types:
- completed
status: {}
jobs:
automerge:
runs-on: ubuntu-latest
steps:
- id: automerge
name: automerge
uses: "pascalgn/automerge-action@v0.15.6"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
MERGE_LABELS: "lgtm,LGTM,automerge,!wip,!work in progress"
MERGE_METHOD: "squash"
MERGE_RETRIES: "6"
MERGE_RETRY_SLEEP: "10000"
- name: feedback
if: steps.automerge.outputs.mergeResult == "merged"
run: |
echo "Pull request ${{ steps.automerge.outputs.pullRequestNumber }} merged!"
Loading

0 comments on commit ff38ea3

Please sign in to comment.