chore: testing ci #7
Workflow file for this run
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: Trigger Production Release | |
# on: | |
# workflow_dispatch: | |
# permissions: | |
# contents: write | |
# jobs: | |
# prod_release: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Clone repository | |
# uses: actions/checkout@v4 | |
# with: | |
# fetch-depth: 0 | |
# - name: Merge main -> release | |
# uses: devmasx/merge-branch@6ec8363d74aad4f1615d1234ae1908b4185c4313 | |
# with: | |
# type: now | |
# from_branch: main | |
# target_branch: release | |
# github_token: ${{ secrets.GITHUB_TOKEN }} | |
# - name: Merge release -> main | |
# uses: devmasx/merge-branch@6ec8363d74aad4f1615d1234ae1908b4185c4313 | |
# with: | |
# type: now | |
# from_branch: release | |
# target_branch: main | |
# message: Merge release back to main to get version increment [no ci] | |
# github_token: ${{ secrets.GITHUB_TOKEN }} |