File tree 3 files changed +33
-2
lines changed
3 files changed +33
-2
lines changed Original file line number Diff line number Diff line change 57
57
run : rake check:rubocop
58
58
59
59
Package :
60
+ # skip in master, but run in forks
61
+ if : github.ref_name != 'master' || github.repository_owner != 'yast'
62
+
60
63
runs-on : ubuntu-latest
61
64
62
65
strategy :
Original file line number Diff line number Diff line change
1
+ # See https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
2
+
3
+ name : OBS
4
+
5
+ on :
6
+ # only when committing to master
7
+ push :
8
+ branches : master
9
+
10
+ # allow running manually from GitHub Web
11
+ workflow_dispatch :
12
+
13
+ jobs :
14
+ submit :
15
+ # do not run in forks
16
+ if : github.repository_owner == 'yast'
17
+
18
+ runs-on : ubuntu-latest
19
+
20
+ # the default timeout is 6 hours, do not wait for that long if osc gets stucked
21
+ timeout-minutes : 30
22
+
23
+ steps :
24
+ - name : Submit the package
25
+ # see https://github.com/yast/actions/blob/master/submit/action.yml
26
+ uses : yast/actions/submit@master
27
+ with :
28
+ obs_user : ${{ secrets.OBS_USER }}
29
+ obs_password : ${{ secrets.OBS_PASSWORD }}
Original file line number Diff line number Diff line change 2
2
3
3
[ ![ Workflow Status] ( https://github.com/yast/yast-storage-ng/workflows/CI/badge.svg?branch=master )] (
4
4
https://github.com/yast/yast-storage-ng/actions?query=branch%3Amaster )
5
- [ ![ Jenkins Status] ( https://ci.opensuse.org/buildStatus/icon?job=yast-yast-storage-ng-master )] (
6
- https://ci.opensuse.org/view/Yast/job/yast-yast-storage-ng-master/ )
5
+ [ ![ OBS] ( https://github.com/yast/yast-storage-ng/actions/workflows/submit.yml/badge.svg )] ( https://github.com/yast/yast-storage-ng/actions/workflows/submit.yml )
7
6
[ ![ Coverage Status] ( https://img.shields.io/coveralls/yast/yast-storage-ng/master.svg )] ( https://coveralls.io/github/yast/yast-storage-ng?branch=master )
8
7
[ ![ Code
9
8
Climate] ( https://codeclimate.com/github/yast/yast-storage-ng/badges/gpa.svg )] ( https://codeclimate.com/github/yast/yast-storage-ng )
You can’t perform that action at this time.
0 commit comments