Correct link to my old linux.com article. #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2009- Diego Elio Pettenò | |
# | |
# SPDX-License-Identifier: MIT | |
name: Merge main branch to published | |
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
merge-branch: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Merge to published branch | |
uses: devmasx/merge-branch@v1.1.0 | |
with: | |
type: now | |
target_branch: 'published' | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |