Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2503 doc autogen #2539

Closed
wants to merge 33 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
1702d98
doc autogen
owenwahlgren Jan 8, 2025
ae30533
update on PR
owenwahlgren Jan 8, 2025
b5c7370
update script path
owenwahlgren Jan 8, 2025
c27db7d
update yml
owenwahlgren Jan 8, 2025
f499ed1
checkout branch before building
owenwahlgren Jan 8, 2025
b3dd17e
fix md workflow
owenwahlgren Jan 8, 2025
3b37113
fix md workflow
owenwahlgren Jan 8, 2025
ec29931
please
owenwahlgren Jan 8, 2025
14225b6
fix
owenwahlgren Jan 8, 2025
2e11bf1
chore: Update MD file [skip ci]
invalid-email-address Jan 8, 2025
ec37e5f
Bump google.golang.org/api from 0.214.0 to 0.215.0 (#2529)
dependabot[bot] Jan 9, 2025
d701f9c
Bump google.golang.org/protobuf from 1.36.1 to 1.36.2 (#2540)
dependabot[bot] Jan 9, 2025
9491aa9
update output path
owenwahlgren Jan 13, 2025
7d8407c
format fix
owenwahlgren Jan 13, 2025
ec20dbf
chore: Update MD file [skip ci]
invalid-email-address Jan 13, 2025
dae01ed
improve evm proposer vm activation error handling (#2534)
felipemadero Jan 10, 2025
5f9c834
support contract owners for custom subnet evm binary (#2536)
felipemadero Jan 10, 2025
54a0dca
Bump github.com/aws/aws-sdk-go-v2 from 1.32.7 to 1.32.8 (#2546)
dependabot[bot] Jan 10, 2025
ea23a45
Bump github.com/spf13/afero from 1.11.0 to 1.12.0 (#2547)
dependabot[bot] Jan 10, 2025
7da695c
chore: Update MD file [skip ci]
invalid-email-address Jan 13, 2025
aea1c99
test
owenwahlgren Jan 14, 2025
6be6b7b
fix: commit action
owenwahlgren Jan 23, 2025
d0c3936
Bump google.golang.org/api from 0.215.0 to 0.216.0 (#2550)
dependabot[bot] Jan 13, 2025
3122675
Bump github.com/aws/aws-sdk-go-v2/config from 1.28.7 to 1.28.10 (#2551)
dependabot[bot] Jan 13, 2025
9428410
Improve change weight (#2545)
felipemadero Jan 14, 2025
de11ecc
refactor: using slices.Contains to simplify the code (#2552)
dashangcun Jan 14, 2025
54813cd
chore: Update MD file [skip ci]
invalid-email-address Jan 15, 2025
a6c81b8
Use local machine to join as validator on any L1 (#2548)
sukantoraymond Jan 17, 2025
2fd91b1
Bump github.com/aws/aws-sdk-go-v2/service/ec2 from 1.198.1 to 1.200.0…
dependabot[bot] Jan 20, 2025
6454a79
Bump github.com/docker/docker (#2554)
dependabot[bot] Jan 20, 2025
595cfa4
chore: Update MD file [skip ci]
invalid-email-address Jan 21, 2025
179a819
try another way
owenwahlgren Jan 23, 2025
fffa819
chore: Update MD file [skip ci]
invalid-email-address Jan 8, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix
owenwahlgren committed Jan 8, 2025
commit 14225b662c26bb1956f5bc74e36b75c5f82e463c
13 changes: 7 additions & 6 deletions .github/workflows/update-markdown.yml
Original file line number Diff line number Diff line change
@@ -49,12 +49,13 @@ jobs:

- name: Commit changes
run: |
git config user.name "github-actions"
git config user.email "github-actions@github.com"
git config user.name "github-actions" ;
git config user.email "github-actions@github.com" ;
if [ -n "$(git status --porcelain)" ]; then
git add .
git commit -m "chore: Update MD file [skip ci]"
git push origin HEAD:${{ github.head_ref }}
git add . ;
git commit -m "chore: Update MD file [skip ci]" ;
git push origin HEAD:${{ github.head_ref }} ;
else
echo "No changes to commit."
echo "No changes to commit." ;
fi