-
Notifications
You must be signed in to change notification settings - Fork 836
86 lines (84 loc) · 4.44 KB
/
new_version_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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
name: New version check
on:
# enabling manual trigger
workflow_dispatch:
# running every hour
schedule:
- cron: '48 * * * *'
jobs:
check:
# do not run in forks
if: github.repository == 'ungoogled-software/ungoogled-chromium'
runs-on: ubuntu-latest
steps:
- name: Set maintainer groups
id: maintainers
run: |
echo "all=@networkException" >> $GITHUB_OUTPUT
echo "linux=@rany2 @clickot" >> $GITHUB_OUTPUT
echo "windows=" >> $GITHUB_OUTPUT
echo "macos=" >> $GITHUB_OUTPUT
- name: Get the latest Chromium version
id: latest-version
run: |
set -e
echo "linux_version=$( curl -s 'https://versionhistory.googleapis.com/v1/chrome/platforms/linux/channels/stable/versions/all/releases?filter=endtime=none&order_by=version%20desc' | jq -re '.releases | first | .version' )" >> $GITHUB_OUTPUT
echo "win_version=$( curl -s 'https://versionhistory.googleapis.com/v1/chrome/platforms/win/channels/stable/versions/all/releases?filter=endtime=none&order_by=version%20desc' | jq -re '.releases | first | .version' )" >> $GITHUB_OUTPUT
echo "mac_version=$( curl -s 'https://versionhistory.googleapis.com/v1/chrome/platforms/mac/channels/stable/versions/all/releases?filter=endtime=none&order_by=version%20desc' | jq -re '.releases | first | .version' )" >> $GITHUB_OUTPUT
- uses: actions/checkout@v3
- name: Create Issue for all platforms
if: |
contains( steps.latest-version.outputs.win_version, steps.latest-version.outputs.mac_version ) &&
contains( steps.latest-version.outputs.mac_version, steps.latest-version.outputs.linux_version )
uses: dblock/create-a-github-issue@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ steps.latest-version.outputs.linux_version }}
PLATFORM: all platforms
NOTIFY_MAINTAINERS: "${{ steps.maintainers.outputs.all }} ${{ steps.maintainers.outputs.linux }} ${{ steps.maintainers.outputs.windows }} ${{ steps.maintainers.outputs.macos }}"
with:
update_existing: false
search_existing: all
filename: .github/ISSUE_TEMPLATE/create-an--updating-to-chromium-x-x-x-x-.md
- name: Create Issue for Linux
if: |
! contains( steps.latest-version.outputs.win_version, steps.latest-version.outputs.mac_version ) ||
! contains( steps.latest-version.outputs.mac_version, steps.latest-version.outputs.linux_version )
uses: dblock/create-a-github-issue@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ steps.latest-version.outputs.linux_version }}
PLATFORM: Linux
NOTIFY_MAINTAINERS: "${{ steps.maintainers.outputs.all }} ${{ steps.maintainers.outputs.linux }}"
with:
update_existing: false
search_existing: all
filename: .github/ISSUE_TEMPLATE/create-an--updating-to-chromium-x-x-x-x-.md
- name: Create Issue for macOS
if: |
! contains( steps.latest-version.outputs.win_version, steps.latest-version.outputs.mac_version ) ||
! contains( steps.latest-version.outputs.mac_version, steps.latest-version.outputs.linux_version )
uses: dblock/create-a-github-issue@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ steps.latest-version.outputs.mac_version }}
PLATFORM: macOS
NOTIFY_MAINTAINERS: "${{ steps.maintainers.outputs.all }} ${{ steps.maintainers.outputs.macos }}"
with:
update_existing: false
search_existing: all
filename: .github/ISSUE_TEMPLATE/create-an--updating-to-chromium-x-x-x-x-.md
- name: Create Issue for Windows
if: |
! contains( steps.latest-version.outputs.win_version, steps.latest-version.outputs.mac_version ) ||
! contains( steps.latest-version.outputs.mac_version, steps.latest-version.outputs.linux_version )
uses: dblock/create-a-github-issue@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ steps.latest-version.outputs.win_version }}
PLATFORM: Windows
NOTIFY_MAINTAINERS: "${{ steps.maintainers.outputs.all }} ${{ steps.maintainers.outputs.windows }}"
with:
update_existing: false
search_existing: all
filename: .github/ISSUE_TEMPLATE/create-an--updating-to-chromium-x-x-x-x-.md