Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/cargo/xorf-0.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
xxchan authored Oct 17, 2023
2 parents 7ab6068 + fcc2469 commit 4c9c5c4
Show file tree
Hide file tree
Showing 539 changed files with 16,212 additions and 6,925 deletions.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@ updates:
aws:
patterns:
- "aws*"
tonic:
patterns:
- "tonic*"
- "prost*"
8 changes: 4 additions & 4 deletions .github/workflows/cherry-pick-to-release-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ on:
types: ["closed", "labeled"]

jobs:
release_pull_request_1_1:
if: "contains(github.event.pull_request.labels.*.name, 'need-cherry-pick-v1.1') && github.event.pull_request.merged == true"
release_pull_request_1_3:
if: "contains(github.event.pull_request.labels.*.name, 'need-cherry-pick-v1.3') && github.event.pull_request.merged == true"
runs-on: ubuntu-latest
name: release_pull_request
steps:
Expand All @@ -16,9 +16,9 @@ jobs:
- name: Create PR to branch
uses: risingwavelabs/github-action-cherry-pick@master
with:
pr_branch: 'v1.1-rc'
pr_branch: 'v1.3-rc'
pr_labels: 'cherry-pick'
pr_body: ${{ format('Cherry picking \#{0} onto branch v1.1-rc', github.event.number) }}
pr_body: ${{ format('Cherry picking \#{0} onto branch v1.3-rc', github.event.number) }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
15 changes: 14 additions & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Maximize build space
uses: easimon/maximize-build-space@master
with:
remove-dotnet: 'true'
remove-android: 'true'
remove-haskell: 'true'
remove-codeql: 'true'
remove-docker-images: 'true'
root-reserve-mb: 10240
temp-reserve-mb: 10240
- uses: actions/checkout@v3
- name: Setup Rust toolchain
run: rustup show
Expand All @@ -30,6 +40,8 @@ jobs:
mkdir artifact
cp -R target/doc/* artifact
- name: Show available storage
run: df -h
- name: Install cargo-docset
uses: taiki-e/install-action@v2
with:
Expand All @@ -49,7 +61,8 @@ jobs:
uses: actions/upload-pages-artifact@v1
with:
path: artifact

- name: Show available storage
run: df -h
deploy:
needs: build
permissions:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/nightly-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
remove-haskell: 'true'
remove-codeql: 'true'
remove-docker-images: 'true'
root-reserve-mb: 2048
- uses: actions/checkout@v3
- name: Setup Rust toolchain
run: |
Expand Down
Loading

0 comments on commit 4c9c5c4

Please sign in to comment.