Skip to content

Commit 2d6cf79

Browse files
committed
Merge pull request #2837 from dscho/monitor-component-updates
Start monitoring updates of Git for Windows' component in the open
2 parents 3322823 + 0dc76bb commit 2d6cf79

File tree

1 file changed

+87
-0
lines changed

1 file changed

+87
-0
lines changed
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
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+
MAX_AGE: 7d
16+
17+
jobs:
18+
job:
19+
runs-on: ubuntu-latest
20+
permissions:
21+
issues: write
22+
strategy:
23+
matrix:
24+
component:
25+
- label: git
26+
feed: https://github.com/git/git/tags.atom
27+
- label: git-lfs
28+
feed: https://github.com/git-lfs/git-lfs/tags.atom
29+
- label: gcm-core
30+
feed: https://github.com/microsoft/git-credential-manager-core/tags.atom
31+
- label: tig
32+
feed: https://github.com/jonas/tig/tags.atom
33+
- label: cygwin
34+
feed: https://github.com/cygwin/cygwin/releases.atom
35+
title-pattern: ^(?!.*newlib)
36+
- label: msys2-runtime-package
37+
feed: https://github.com/msys2/MSYS2-packages/commits/master/msys2-runtime.atom
38+
- label: msys2-runtime
39+
feed: https://github.com/msys2/msys2-runtime/commits/HEAD.atom
40+
aggregate: true
41+
- label: openssh
42+
feed: https://github.com/openssh/openssh-portable/tags.atom
43+
- label: openssl
44+
feed: https://github.com/openssl/openssl/tags.atom
45+
title-pattern: ^(?!.*alpha)
46+
- label: gnutls
47+
feed: https://gnutls.org/news.atom
48+
- label: heimdal
49+
feed: https://github.com/heimdal/heimdal/tags.atom
50+
- label: git-sizer
51+
feed: https://github.com/github/git-sizer/tags.atom
52+
- label: gitflow
53+
feed: https://github.com/petervanderdoes/gitflow-avh/tags.atom
54+
- label: curl
55+
feed: https://github.com/curl/curl/tags.atom
56+
- label: libgpg-error
57+
feed: https://github.com/gpg/libgpg-error/releases.atom
58+
title-pattern: ^libgpg-error-[0-9\.]*$
59+
- label: libgcrypt
60+
feed: https://github.com/gpg/libgcrypt/releases.atom
61+
title-pattern: ^libgcrypt-[0-9\.]*$
62+
- label: gpg
63+
feed: https://github.com/gpg/gnupg/releases.atom
64+
- label: mintty
65+
feed: https://github.com/mintty/mintty/releases.atom
66+
- label: p7zip
67+
feed: https://sourceforge.net/projects/p7zip/rss?path=/p7zip
68+
- label: bash
69+
feed: https://git.savannah.gnu.org/cgit/bash.git/atom/?h=master
70+
aggregate: true
71+
- label: perl
72+
feed: https://github.com/Perl/perl5/tags.atom
73+
title-pattern: ^(?!.*(5\.[0-9]+[13579]|RC))
74+
- label: pcre2
75+
feed: https://github.com/PCRE2Project/pcre2/tags.atom
76+
fail-fast: false
77+
steps:
78+
- uses: git-for-windows/rss-to-issues@v0
79+
with:
80+
feed: ${{matrix.component.feed}}
81+
prefix: "[New ${{matrix.component.label}} version]"
82+
labels: component-update
83+
github-token: ${{ secrets.GITHUB_TOKEN }}
84+
character-limit: ${{ env.CHARACTER_LIMIT }}
85+
max-age: ${{ env.MAX_AGE }}
86+
aggregate: ${{matrix.component.aggregate}}
87+
title-pattern: ${{matrix.component.title-pattern}}

0 commit comments

Comments
 (0)