You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
822 B
31 lines
822 B
# This is a basic workflow that is manually triggered
|
|
|
|
name: Manual workflow
|
|
|
|
# Controls when the action will run. Workflow runs when manually triggered using the UI
|
|
# or API.
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- work-in-progress
|
|
|
|
|
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
|
jobs:
|
|
# This workflow contains a single job called "merge"
|
|
merge:
|
|
# The type of runner that the job will run on
|
|
runs-on: ubuntu-latest
|
|
|
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
|
|
- name: Merge work-in-progress -> main
|
|
uses: devmasx/merge-branch@master
|
|
with:
|
|
type: now
|
|
target_branch: main
|
|
github_token: ${{ github.token }}
|
|
|
|
|