Merge pull request #2 from haya14busa/integration-test

Add integration test
This commit is contained in:
haya14busa
2020-01-19 16:13:00 +09:00
committed by GitHub

33
.github/workflows/autobump.yml vendored Normal file
View File

@@ -0,0 +1,33 @@
name: autobump
on:
schedule:
- cron: '*/15 * * * *'
push: # for testing
branches:
- '**'
jobs:
autobump:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./
id: autobump
with:
file: testdata/testfile
version_name: REVIEWDOG_VERSION
repo: reviewdog/reviewdog
- name: Create Pull Request
uses: peter-evans/create-pull-request@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
title: "chore(deps): update reviewdog to ${{ steps.autobump.outputs.latest }}"
commit-message: "chore(deps): update reviewdog to ${{ steps.autobump.outputs.latest }}"
body: |
Update reviewdog to [${{ steps.autobump.outputs.latest }}](https://github.com/reviewdog/reviewdog/releases/tag/v${{ steps.autobump.outputs.latest }})
This PR is auto generated by [autobump workflow](https://github.com/${{ github.repository }}/actions?query=workflow%3Aautobump).
branch: autobump/reviewdog