forked from zio/zio-http
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/zio/zio-http into docs-rewrite
- Loading branch information
Showing
125 changed files
with
14,575 additions
and
9,143 deletions.
There are no files selected for viewing
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,40 +57,64 @@ jobs: | |
run: sbt docs/publishToNpm | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
generate-readme: | ||
name: Generate README | ||
update-readme: | ||
name: Update README | ||
runs-on: ubuntu-latest | ||
if: ${{ (github.event_name == 'push') || ((github.event_name == 'release') && (github.event.action == 'published')) }} | ||
continue-on-error: false | ||
if: ${{ github.event_name == 'push' }} | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v3.3.0 | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.head_ref }} | ||
fetch-depth: '0' | ||
- name: Install libuv | ||
run: sudo apt-get update && sudo apt-get install -y libuv1-dev | ||
- name: Setup Scala | ||
uses: actions/setup-java@v3.9.0 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: temurin | ||
java-version: 17 | ||
distribution: corretto | ||
java-version: '17' | ||
check-latest: true | ||
- name: Cache Dependencies | ||
uses: coursier/cache-action@v6 | ||
- name: Generate Readme | ||
run: sbt docs/generateReadme | ||
run: sbt docs/generateReadme | ||
- name: Commit Changes | ||
run: | | ||
git config --local user.email "github-actions[bot]@users.noreply.github.com" | ||
git config --local user.name "github-actions[bot]" | ||
git config --local user.email "zio-assistant[bot]@users.noreply.github.com" | ||
git config --local user.name "ZIO Assistant" | ||
git add README.md | ||
git commit -m "Update README.md" || echo "No changes to commit" | ||
- name: Generate Token | ||
id: generate-token | ||
uses: zio/[email protected] | ||
with: | ||
app_id: ${{ secrets.APP_ID }} | ||
app_private_key: ${{ secrets.APP_PRIVATE_KEY }} | ||
- name: Create Pull Request | ||
uses: peter-evans/[email protected] | ||
id: cpr | ||
uses: peter-evans/create-pull-request@v6 | ||
with: | ||
body: |- | ||
Autogenerated changes after running the `sbt docs/generateReadme` command of the [zio-sbt-website](https://zio.dev/zio-sbt) plugin. | ||
I will automatically update the README.md file whenever there is new change for README.md, e.g. | ||
I will automatically update the README.md file whenever there is a new change for README.md, e.g. | ||
- After each release, I will update the version in the installation section. | ||
- After any changes to the "docs/index.md" file, I will update the README.md file accordingly. | ||
branch: zio-sbt-website/update-readme | ||
commit-message: Update README.md | ||
token: ${{ steps.generate-token.outputs.token }} | ||
delete-branch: true | ||
title: Update README.md | ||
- name: Approve PR | ||
if: ${{ steps.cpr.outputs.pull-request-number }} | ||
run: gh pr review "$PR_URL" --approve | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
PR_URL: ${{ steps.cpr.outputs.pull-request-url }} | ||
- name: Enable Auto-Merge | ||
if: ${{ steps.cpr.outputs.pull-request-number }} | ||
run: gh pr merge --auto --squash "$PR_URL" || gh pr merge --squash "$PR_URL" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
PR_URL: ${{ steps.cpr.outputs.pull-request-url }} |
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 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 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 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 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
Oops, something went wrong.