generated from reviewdog/action-template
-
-
Notifications
You must be signed in to change notification settings - Fork 8
41 lines (37 loc) · 1.45 KB
/
depup.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: depup
on:
schedule:
- cron: '35 9 2,13,25 * *' # Runs at 9:35 UTC 2,13,25 per month
repository_dispatch:
types: [depup]
workflow_dispatch:
permissions:
contents: write
pull-requests: write
jobs:
reviewdog:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Check depup
uses: haya14busa/action-depup@v1
id: depup
with:
file: action.yml
version_name: REVIEWDOG_VERSION
repo: reviewdog/reviewdog
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.GITHUB_TOKEN }}
author: 'github-actions <41898282+github-actions[bot]@users.noreply.github.com>'
title: "chore(deps): update ${{ steps.depup.outputs.repo }} to ${{ steps.depup.outputs.latest }}"
commit-message: "chore(deps): update ${{ steps.depup.outputs.repo }} to ${{ steps.depup.outputs.latest }}"
body: |
Update ${{ steps.depup.outputs.repo }} 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/${{ steps.depup.outputs.repo }}
labels: "bump:minor"