diff --git a/.github/workflows/devportal-update.yml b/.github/workflows/devportal-update.yml index 5e77540..9172368 100644 --- a/.github/workflows/devportal-update.yml +++ b/.github/workflows/devportal-update.yml @@ -29,6 +29,9 @@ jobs: run: | mkdir -p transformed + # Remove the unwanted lines from README.md (first 3 lines in this case) + tail -n +4 README.md > temp_README.md + # Process README.md echo "---" > transformed/README.md echo "sidebar_label: Foundry" >> transformed/README.md @@ -42,7 +45,7 @@ jobs: echo "If you wish to suggest changes on this document, please open a PR on the [Foundry Starter Kit Repository](https://github.com/rsksmart/rootstock-foundry-starterkit.git)" >> transformed/README.md echo ":::" >> transformed/README.md echo "" >> transformed/README.md - cat README.md >> transformed/README.md + cat temp_README.md >> transformed/README.md cp transformed/README.md devportal/docs/02-developers/04-quickstart/foundry.md # Step 3: Commit and Push Changes to Devportal Repository @@ -69,4 +72,4 @@ jobs: -H "Authorization: Bearer ${{ secrets.DEVPORTAL_DOCS_UPDATE_TOKEN }}" \ -H "X-GitHub-Api-Version: 2022-11-28" \ https://api.github.com/repos/rsksmart/devportal/pulls \ - -d '{"title":"Automated update of documentation","body":"This PR updates the Devportal documentation with the latest changes from the original repository.","head":"update-from-foundry-starter","base":"main"}' + -d '{"title":"rootstock-foundry-starterkit automated update of documentation","body":"This PR updates the Devportal documentation with the latest changes from the original repository.","head":"update-from-foundry-starter","base":"main"}' diff --git a/README.md b/README.md index e0b1dd1..3e6724c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![OpenSSF Scorecard](https://api.scorecard.dev/projects/github.com/rsksmart/rootstock-foundry-starterkit/badge)](https://scorecard.dev/viewer/?uri=github.com/rsksmart/rootstock-foundry-starterkit) [![CodeQL](https://github.com/rsksmart/rskj/workflows/CodeQL/badge.svg)](https://github.com/rsksmart/rootstock-foundry-starterkit/actions?query=workflow%3ACodeQL) -RSK Logo +RSK Logo # Rootstock Foundry Starter Kit diff --git a/img/rootstock-docs.png b/img/rootstock-docs.png new file mode 100644 index 0000000..946107c Binary files /dev/null and b/img/rootstock-docs.png differ