-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (36 loc) · 1.23 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
---
name: depup
on:
workflow_dispatch: {}
schedule:
- cron: '5 4 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: reviewdog/[email protected]
id: depup
with:
file: config/plugins_extra.txt
version_name: configuration-as-code
repo: jenkinsci/configuration-as-code-plugin
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
title: >-
bump configuration-as-code plugin to
${{ steps.depup.outputs.latest }}
commit-message: >-
bump configuration-as-code plugin to
${{ steps.depup.outputs.latest }}
body: >-
Update configuration-as-code to
[${{ steps.depup.outputs.latest }}](
https://github.com/${{steps.depup.outputs.repo}}/releases/tag/configuration-as-code-${{steps.depup.outputs.latest}}).
This PR is auto generated by
[depup workflow](
https://github.com/${{github.repository}}/actions?query=workflow%3Adepup).
branch: dependencies/jenkins-plugins/configuration-as-code
base: master