CLI reference was updated by edgelesssys/marblerun@c3a26ecb #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: Create Pull Request for CLI reference update | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- action/marblerun/update-cli-reference | |
jobs: | |
pull-request: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
ref: ${{ !github.event.pull_request.head.repo.fork && github.head_ref || '' }} | |
- name: pull-request | |
uses: repo-sync/pull-request@7e79a9f5dc3ad0ce53138f01df2fad14a04831c5 # v2.12.1 | |
with: | |
destination_branch: "master" | |
pr_title: "docs: update cli reference" | |
pr_body: | | |
:robot: *This is an automated PR.* :robot: | |
Changes in the CLI triggered this PR, it updates the corresponding documentation page. | |
github_token: ${{ secrets.GITHUB_TOKEN }} |