-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (52 loc) · 1.56 KB
/
refreshVersions.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Worfklow for https://jmfayard.github.io/refreshVersions/
name: RefreshVersions
on:
workflow_dispatch:
schedule:
- cron: '0 7 * * 1'
jobs:
"Refresh-Versions":
runs-on: "ubuntu-latest"
steps:
- id: step-0
name: check-out
uses: actions/checkout@v3
with:
ref: master
- id: step-1
name: setup-java
uses: actions/setup-java@v3
with:
java-version: 17
distribution: adopt
- id: step-2
name: create-branch
uses: peterjgrainger/action-create-branch@v2.2.0
with:
branch: refresh-versions
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- id: step-3
name: gradle refreshVersions
uses: gradle/gradle-build-action@v2.4.2
with:
arguments: refreshVersions
- id: step-4
name: Commit
uses: EndBug/add-and-commit@v9
with:
author_name: GitHub Actions
author_email: noreply@github.com
message: Refresh versions.properties
new_branch: refresh-versions
push: --force --set-upstream origin refresh-versions
- id: step-5
name: Pull Request
uses: repo-sync/pull-request@v2
with:
source_branch: refresh-versions
destination_branch: master
pr_title: Upgrade gradle dependencies
pr_body: '[refreshVersions](https://github.com/jmfayard/refreshVersions) has found those library updates!'
pr_draft: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}