Skip to content

Commit ff43de4

Browse files
committed
Add workflow to update mamolinux/stable branch
1 parent 2ed5ea1 commit ff43de4

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/update-stable.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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 }}

0 commit comments

Comments
 (0)