mirror of
https://github.com/morgan9e/helium
synced 2026-04-15 00:44:06 +09:00
CI: Mention maintainers on chromium releases individually
This commit is contained in:
committed by
Jakob-Niklas See
parent
02bb49188a
commit
5e1f8e9121
@@ -15,4 +15,4 @@ If you'd like to increase visibility of your progress or get early feedback/advi
|
||||
|
||||
Feel free to raise issues or questions throughout the process here. However, please refrain from asking for ETAs unless no visible progress has been made here or in the developer's PR for a while (e.g. 2 weeks).
|
||||
|
||||
{{ env.NOTIFY_TEAMS }}
|
||||
{{ env.NOTIFY_MAINTAINERS }}
|
||||
|
||||
15
.github/workflows/new_version_check.yml
vendored
15
.github/workflows/new_version_check.yml
vendored
@@ -13,6 +13,13 @@ jobs:
|
||||
if: github.repository == 'ungoogled-software/ungoogled-chromium'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Set maintainer groups
|
||||
id: maintainers
|
||||
run: |
|
||||
echo "::set-output name=all::@networkException"
|
||||
echo "::set-output name=linux::@rany2"
|
||||
echo "::set-output name=windows::"
|
||||
echo "::set-output name=macos::"
|
||||
- name: Get the latest Chromium version
|
||||
id: latest-version
|
||||
run: |
|
||||
@@ -29,7 +36,7 @@ jobs:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
VERSION: ${{ steps.latest-version.outputs.linux_version }}
|
||||
PLATFORM: all platforms
|
||||
NOTIFY_TEAMS: "@ungoogled-software/notify-linux @ungoogled-software/notify-windows @ungoogled-software/notify-macos"
|
||||
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
|
||||
@@ -43,7 +50,7 @@ jobs:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
VERSION: ${{ steps.latest-version.outputs.linux_version }}
|
||||
PLATFORM: Linux
|
||||
NOTIFY_TEAMS: "@ungoogled-software/notify-linux"
|
||||
NOTIFY_MAINTAINERS: "${{ steps.maintainers.outputs.all }} ${{ steps.maintainers.outputs.linux }}"
|
||||
with:
|
||||
update_existing: false
|
||||
search_existing: all
|
||||
@@ -57,7 +64,7 @@ jobs:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
VERSION: ${{ steps.latest-version.outputs.mac_version }}
|
||||
PLATFORM: macOS
|
||||
NOTIFY_TEAMS: "@ungoogled-software/notify-macos"
|
||||
NOTIFY_MAINTAINERS: "${{ steps.maintainers.outputs.all }} ${{ steps.maintainers.outputs.macos }}"
|
||||
with:
|
||||
update_existing: false
|
||||
search_existing: all
|
||||
@@ -71,7 +78,7 @@ jobs:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
VERSION: ${{ steps.latest-version.outputs.win_version }}
|
||||
PLATFORM: Windows
|
||||
NOTIFY_TEAMS: "@ungoogled-software/notify-windows"
|
||||
NOTIFY_MAINTAINERS: "${{ steps.maintainers.outputs.all }} ${{ steps.maintainers.outputs.windows }}"
|
||||
with:
|
||||
update_existing: false
|
||||
search_existing: all
|
||||
|
||||
Reference in New Issue
Block a user