File tree 1 file changed +31
-0
lines changed
1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Automatically fetch and merge the master branch for new stable releases
2
+ name : Update stable branch
3
+
4
+ # Controls when the action will run.
5
+ on :
6
+ # Triggers the workflow on push events but only for new tags
7
+ push :
8
+ tags :
9
+ - " *.*.*"
10
+
11
+ # A workflow run is made up of one or more jobs that can run sequentially or in parallel
12
+ jobs :
13
+ # This workflow contains a single job called "sync-new-release"
14
+ sync-new-release :
15
+ # The type of runner that the job will run on
16
+ runs-on : ubuntu-latest
17
+
18
+ # Steps represent a sequence of tasks that will be executed as part of the job
19
+ steps :
20
+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
21
+ - uses : actions/checkout@master
22
+ with :
23
+ fetch-depth : 0
24
+
25
+ - name : Update mamolinux/stable for new release
26
+ uses : devmasx/merge-branch@master
27
+ with :
28
+ type : now
29
+ from_branch : master
30
+ target_branch : mamolinux/stable
31
+ github_token : ${{ github.token }}
You can’t perform that action at this time.
0 commit comments