File tree 2 files changed +35
-0
lines changed
2 files changed +35
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : report
2
+ on :
3
+ workflow_dispatch :
4
+ push :
5
+ branches :
6
+ - main
7
+ pull_request :
8
+ branches :
9
+ - main
10
+ jobs :
11
+ generate_report :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - uses : actions/checkout@v3
15
+ with :
16
+ persist-credentials : false
17
+ - uses : ruby/setup-ruby@v1
18
+ with :
19
+ ruby-version : 3.3
20
+ env :
21
+ STACK_VERSION : 8.13.0-SNAPSHOT
22
+ - name : Build
23
+ run : |
24
+ cd report && bundle install
25
+ - name : Download Artifacts
26
+ run : cd report && bundle exec rake download
27
+ - name : Generate report
28
+ run : cd report && bundle exec rake report
29
+ - uses : gr2m/create-or-update-pull-request-action@v1
30
+ env :
31
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
32
+ with :
33
+ commit-message : " Updates report `date '+%Y-%m-%d|%H:%M:%S'`"
Original file line number Diff line number Diff line change 1
1
source 'https://rubygems.org'
2
2
3
+ gem 'rake'
4
+
3
5
group :development , :test do
4
6
gem 'debug'
5
7
end
You can’t perform that action at this time.
0 commit comments