chore(deps): bump the go group across 1 directory with 7 updates (#808) #245
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: Autogenerate the manifests and documentation for the CRD | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
generate-crd-docs: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Render chart into manifests | |
uses: devcontainers/[email protected] | |
with: | |
runCmd: | | |
make crd | |
push: never | |
skipContainerUserIdUpdate: false | |
- name: Generate CRD documentation | |
uses: SwissDataScienceCenter/renku-actions/[email protected] | |
env: | |
RESOURCES: ./manifests/crd.yaml | |
OUTPUT: ./docs/crd.md | |
- name: Create pull request | |
uses: peter-evans/create-pull-request@v3 | |
env: | |
GITHUB_TOKEN: ${{ secrets.RENKUBOT_GITHUB_TOKEN }} | |
with: | |
commit-message: "chore: update rendered manifests and CRD docs" | |
delete-branch: true | |
title: Update rendered manifests and CRD docs | |
author: "Renku Bot <[email protected]>" | |
committer: "Renku Bot <[email protected]>" | |
branch: renkubot/update-manifests-docs- | |
branch-suffix: timestamp |