55 lines
2.0 KiB
YAML
55 lines
2.0 KiB
YAML
name: depup
|
|
on:
|
|
schedule:
|
|
- cron: '14 14 * * *'
|
|
push: # for testing
|
|
branches:
|
|
- '**'
|
|
|
|
jobs:
|
|
reviewdog:
|
|
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@v3
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
title: "chore(deps): update ${{ github.job }} to ${{ steps.depup.outputs.latest }}"
|
|
commit-message: "chore(deps): update ${{ github.job }} to ${{ steps.depup.outputs.latest }}"
|
|
body: |
|
|
Update ${{ github.job }} to [${{ steps.depup.outputs.latest }}](https://github.com/${{ steps.depup.outputs.repo }}/releases/tag/v${{ steps.depup.outputs.latest }})
|
|
|
|
This PR is auto generated by [depup workflow](https://github.com/${{ github.repository }}/actions?query=workflow%3A${{ github.workflow }}).
|
|
branch: depup/${{ github.job }}
|
|
|
|
redpen:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: ./
|
|
id: depup
|
|
with:
|
|
file: testdata/testfile
|
|
version_name: REDPEN_VERSION
|
|
repo: redpen-cc/redpen
|
|
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v3
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
title: "chore(deps): update ${{ github.job }} to ${{ steps.depup.outputs.latest }}"
|
|
commit-message: "chore(deps): update ${{ github.job }} to ${{ steps.depup.outputs.latest }}"
|
|
body: |
|
|
Update ${{ github.job }} to [${{ steps.depup.outputs.latest }}](https://github.com/${{ steps.depup.outputs.repo }}/releases/tag/v${{ steps.depup.outputs.latest }})
|
|
|
|
This PR is auto generated by [depup workflow](https://github.com/${{ github.repository }}/actions?query=workflow%3A${{ github.workflow }}).
|
|
branch: depup/${{ github.job }}
|