rename autobump to depup
This commit is contained in:
33
.github/workflows/depup.yml
vendored
Normal file
33
.github/workflows/depup.yml
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
name: depup
|
||||
on:
|
||||
schedule:
|
||||
- cron: '*/15 * * * *'
|
||||
push: # for testing
|
||||
branches:
|
||||
- '**'
|
||||
|
||||
jobs:
|
||||
depup:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: ./
|
||||
id: depup
|
||||
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.depup.outputs.latest }}"
|
||||
commit-message: "chore(deps): update reviewdog to ${{ steps.depup.outputs.latest }}"
|
||||
body: |
|
||||
Update reviewdog to [${{ steps.depup.outputs.latest }}](https://github.com/reviewdog/reviewdog/releases/tag/v${{ steps.depup.outputs.latest }})
|
||||
|
||||
This PR is auto generated by [depup workflow](https://github.com/${{ github.repository }}/actions?query=workflow%3Adepup).
|
||||
branch: depup/reviewdog
|
||||
|
||||
|
||||
Reference in New Issue
Block a user