updatedeps #47
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
name: Update Dependencies | |
on: | |
repository_dispatch: | |
types: [ updatedeps ] | |
jobs: | |
UpdateDep: | |
name: Update Dependency | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Go environment | |
uses: actions/setup-go@v1 | |
with: | |
go-version: 1.18 # optional | |
- name: Update Dependency | |
run: | | |
go get -u -v github.com/wechaty/go-wechaty@${{ github.event.client_payload.tag }} | |
go mod download | |
go mod tidy | |
- name: Test | |
run: | | |
make install | |
make test | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: Update dependencies | |
title: Update dependencies | |
body: | | |
- Dependency updates | |
Auto-generated by [create-pull-request][1] | |
[1]: https://github.com/peter-evans/create-pull-request | |
branch: update-dependencies |