Release 1.03 (#90) #51
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
name: EsoUA_main | |
on: | |
# Trigger the pipeline only in main branch. | |
push: | |
branches: | |
- 'main' | |
paths: | |
# Run the pipeline when only `UkrainianScrollsOnline.txt` file is modified. | |
- 'UkrainianScrollsOnline/UkrainianScrollsOnline.txt' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
merge-to-release-branch: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: everlytic/[email protected] | |
with: | |
github_token: ${{ github.token }} | |
source_ref: ${{ github.ref }} | |
target_branch: 'release' | |
commit_message_template: '[Automated] Merged {source_ref} into target {target_branch}' |