We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ca87f14 + 81ca999 commit 07d09e0Copy full SHA for 07d09e0
.github/workflows/check-for-releases.yml
@@ -0,0 +1,24 @@
1
+name: Check for new Redmine releases
2
+
3
+on:
4
+ workflow_dispatch:
5
+ schedule:
6
+ # Run this Action every day a 5:37am UTC
7
+ - cron: "37 5 * * *"
8
9
+jobs:
10
+ redmine-release:
11
+ name: Check for Redmine updates
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - name: Check for updates
16
+ uses: git-for-windows/rss-to-issues@v0
17
+ with:
18
+ github-token: ${{ secrets.GITHUB_TOKEN }}
19
+ feed: https://www.redmine.org/projects/redmine/news.atom
20
+ prefix: "Update the Behat tests: "
21
+ #character-limit: 255
22
+ dry-run: false
23
+ max-age: 72h
24
+ labels: "enhancement"
0 commit comments