Skip to content

Commit 40e7709

Browse files
dschoGit for Windows Build Agent
authored and
Git for Windows Build Agent
committed
Merge pull request #2837 from dscho/monitor-component-updates
Start monitoring updates of Git for Windows' component in the open
2 parents f1f9da6 + 96667fa commit 40e7709

File tree

1 file changed

+77
-0
lines changed

1 file changed

+77
-0
lines changed
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
name: Monitor component updates
2+
3+
# Git for Windows is a slightly modified subset of MSYS2. Some of its
4+
# components are maintained by Git for Windows, others by MSYS2. To help
5+
# keeping the former up to date, this workflow monitors the Atom/RSS feeds
6+
# and opens new tickets for each new component version.
7+
8+
on:
9+
schedule:
10+
- cron: "23 8,11,14,17 * * *"
11+
workflow_dispatch:
12+
13+
env:
14+
CHARACTER_LIMIT: "5000"
15+
LAST_TIME: "48h"
16+
17+
jobs:
18+
job:
19+
runs-on: ubuntu-latest
20+
strategy:
21+
matrix:
22+
component:
23+
- label: git
24+
feed: https://github.com/git/git/tags.atom
25+
- label: git-lfs
26+
feed: https://github.com/git-lfs/git-lfs/tags.atom
27+
- label: gcm-core
28+
feed: https://github.com/microsoft/git-credential-manager-core/tags.atom
29+
- label: tig
30+
feed: https://github.com/jonas/tig/tags.atom
31+
- label: cygwin
32+
feed: https://github.com/cygwin/cygwin/releases.atom
33+
titleFilter: newlib
34+
- label: msys2-runtime-package
35+
feed: https://github.com/msys2/MSYS2-packages/commits/master/msys2-runtime.atom
36+
- label: msys2-runtime
37+
feed: https://github.com/msys2/msys2-runtime/commits/HEAD.atom
38+
aggregate: true
39+
- label: openssh
40+
feed: https://github.com/openssh/openssh-portable/tags.atom
41+
- label: openssl
42+
feed: https://github.com/openssl/openssl/tags.atom
43+
titleFilter: alpha
44+
- label: gnutls
45+
feed: https://gnutls.org/news.atom
46+
- label: heimdal
47+
feed: https://github.com/heimdal/heimdal/tags.atom
48+
- label: git-sizer
49+
feed: https://github.com/github/git-sizer/tags.atom
50+
- label: gitflow
51+
feed: https://github.com/petervanderdoes/gitflow-avh/tags.atom
52+
- label: curl
53+
feed: https://github.com/curl/curl/tags.atom
54+
- label: gpg
55+
feed: https://github.com/gpg/gnupg/releases.atom
56+
- label: mintty
57+
feed: https://github.com/mintty/mintty/releases.atom
58+
- label: p7zip
59+
feed: https://sourceforge.net/projects/p7zip/rss?path=/p7zip
60+
- label: bash
61+
feed: https://git.savannah.gnu.org/cgit/bash.git/atom/?h=master
62+
aggregate: true
63+
- label: perl
64+
feed: https://github.com/Perl/perl5/tags.atom
65+
titleFilter: (5\.[0-9]+[13579])|(RC)
66+
fail-fast: false
67+
steps:
68+
- uses: guilhem/rss-issues-action@cadba1e05ad93613180979261b7e05cee1a9b282
69+
with:
70+
feed: ${{matrix.component.feed}}
71+
prefix: "[New ${{matrix.component.label}} version]"
72+
labels: component-update
73+
repo-token: ${{ secrets.GITHUB_TOKEN }}
74+
characterLimit: ${{ env.CHARACTER_LIMIT }}
75+
lastTime: ${{ env.LAST_TIME }}
76+
aggregate: ${{matrix.component.aggregate}}
77+
titleFilter: ${{matrix.component.titleFilter}}

0 commit comments

Comments
 (0)