This repository has been archived by the owner on Nov 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 147
60 lines (51 loc) · 1.66 KB
/
new-releases-check.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
56
57
58
59
60
# This action runs every Monday morning, scanning Google's Maven repository for updated
# stable packages, opening a PR to bind any new stable releases.
name: Check for new stable releases
# Runs every Monday at 06:00 UTC
on:
schedule:
- cron: 0 6 1,15 * *
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
with:
ref: main
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.x.x
- name: Install dotnet-script
run: dotnet tool install -g dotnet-script
- name: Run update-config script
run: >
dotnet
script
./build/scripts/update-config.csx
--
config.json
update
-dep:https://raw.githubusercontent.com/xamarin/AndroidX/main/config.json
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v5
with:
commit-message: Weekly stable updates
branch-suffix: timestamp
delete-branch: true
title: 'Weekly stable updates'
body: |
Update to latest stable versions of components:
- androidx.example.example - 1.0.0 -> 1.1.0
Checklist
- [ ] Add any metadata needed to get PR to compile
- [ ] Verify any new namespaces are properly renamed (utilities.cake)
- [ ] Verify nuget/namespace spelling (utilities.cake)
- [ ] Locally generate diffs
- [ ] Review any breaking changes
- [ ] Attach diffs to PR
assignees: moljac
draft: true