We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a80dfaf commit af7005cCopy full SHA for af7005c
.github/workflows/reports.yml
@@ -3,6 +3,11 @@ name: Automatically create CHANGELOG for O2 releases
3
on:
4
push:
5
workflow_dispatch:
6
+ inputs:
7
+ LAST_RELEASE_DATE:
8
+ description: 'Time of the last release'
9
+ required: true
10
+ default: ''
11
schedule:
12
- cron: '0 0 * * *'
13
@@ -88,7 +93,8 @@ jobs:
88
93
EOF
89
94
# FIXME: this should really be one second after the last release
90
95
# being published
91
- MERGED_AFTER=`date -v -14d +%Y-%m-%d`
96
+ LAST_RELEASE="${{ github.event.inputs.LAST_RELEASE_DATE }}"
97
+ MERGED_AFTER=${LAST_RELEASE:-$(date -v -14d +%Y-%m-%d)}
92
98
99
# Here we convert all the json files to per subsystem
100
# logs, using the MERGED_AFTER date to further filter them.
0 commit comments