constellation/.github/workflows/docs-update-reference.yml

26 lines
839 B
YAML
Raw Normal View History

2022-09-02 05:52:42 -04:00
name: Create Pull Request for CLI reference update
on:
2022-10-12 04:50:06 -04:00
workflow_dispatch:
2022-09-02 05:52:42 -04:00
push:
branches:
2022-09-09 03:51:42 -04:00
- action/constellation/update-cli-reference
2022-09-02 05:52:42 -04:00
jobs:
pull-request:
runs-on: ubuntu-22.04
2022-09-02 05:52:42 -04:00
steps:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
with:
ref: ${{ !github.event.pull_request.head.repo.fork && github.head_ref || '' }}
2022-09-09 03:51:42 -04:00
- name: pull-request
uses: repo-sync/pull-request@65785d95a5a466e46a9d0708933a3bd51bbf9dde # tag=v2.6.2
2022-09-09 03:51:42 -04:00
with:
destination_branch: "main"
pr_title: "docs: update cli reference"
2022-09-09 03:51:42 -04:00
pr_body: |
:robot: *This is an automated PR.* :robot:
Changes in the CLI triggered this PR, it updates the corresponding documentation page.
2022-09-09 03:51:42 -04:00
github_token: ${{ secrets.GITHUB_TOKEN }}