chore: syntax #20
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
# This job will automatically create a cherry-pick PR for any update to the electron version on the dev branch. | |
# It allows the staging and main branch to stay up-to-date with dependabot electron bumps on dev. | |
name: Cherry-pick Electron bumps | |
on: | |
push: | |
branches: | |
- 'v/merge-from-test' | |
permissions: | |
pull-requests: write | |
contents: write | |
jobs: | |
cherry_pick: | |
if: contains(github.event.pull_request.title, 'test testing ci') | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Create PR to mtt | |
uses: gorillio/github-action-cherry-pick@master | |
with: | |
pr_branch: 'v/merge-to-test' | |
env: | |
GITHUB_TOKEN: ${{secrets.OTTO_THE_BOT_GH_TOKEN}} | |
# test test test | |
# test test test | |
# test test test | |
# test test test | |
# test test test |