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

Add: concurrency configs to workflows #692

Merged
merged 47 commits into from
Jul 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
8e496a7
Merge main into dev (#665)
giacomognosis Apr 26, 2024
4df65ae
Update README, add instructions on deployments to production (#667)
giacomognosis Apr 29, 2024
d7f981e
Core Devs Call April 24, 2024
0xarmagan Apr 29, 2024
c789778
chore: update hardforks info (#668)
4rgon4ut May 3, 2024
d2de8bd
small fix
vanshika-srivastava May 10, 2024
035adcc
grammar fixes
vanshika-srivastava May 10, 2024
3d44379
Add files via upload
0xarmagan May 13, 2024
6614732
Update README.md
0xarmagan May 15, 2024
22def27
fix for developer broken page link
vanshika-srivastava May 17, 2024
2093180
chore: update bridges addresses info
zengzengzenghuy May 27, 2024
6580138
Feature/improve ci (#675)
giacomognosis May 27, 2024
2b85238
chore: update bridges FAQ
zengzengzenghuy May 28, 2024
5e3a647
chore: update Sepolia-Chiado testnet bridges addresses
zengzengzenghuy May 28, 2024
d36e72c
Add files via upload
0xarmagan May 31, 2024
d1be1ed
fix broken mdx files
vanshika-srivastava May 31, 2024
4a0d72d
broken links, package updates
vanshika-srivastava Jun 3, 2024
82893c0
remove mGNO related content
vanshika-srivastava Jun 4, 2024
91bf248
Add files via upload
0xarmagan Jun 12, 2024
174524a
refactor(bridges): remove outdated content and consolidate bridge val…
zengzengzenghuy Jun 12, 2024
bf157f8
Added Option 3: "Running Your Own Deposit UI Instance Locally" (#672)
xdecentralix Jun 12, 2024
e124f76
added links to third party bridges and update legacy UI section
vanshika-srivastava Jun 12, 2024
fb93a20
bridges update
vanshika-srivastava Jun 12, 2024
d38065c
reconfigure bridge segment
vanshika-srivastava Jun 13, 2024
5dfc47b
new segment form
vanshika-srivastava Jun 14, 2024
1ce4a90
fix a broken link
vanshika-srivastava Jun 14, 2024
7f1e237
small fixes
vanshika-srivastava Jun 14, 2024
325af30
faq: update bridge FAQs
zengzengzenghuy Jun 19, 2024
f3f84f2
Add files via upload
0xarmagan Jun 20, 2024
a6da00c
Update 06-19-core-devs-call.md
0xarmagan Jun 20, 2024
51cf172
updated docs on The Graph (#683)
alinobrasil Jun 21, 2024
7bf33f0
add pyth to oracle (#686)
aditya520 Jun 26, 2024
3867703
Add Chronicle to Oracles list (#685)
biancabuzea200 Jun 26, 2024
49da592
Add files via upload
0xarmagan Jun 26, 2024
4393131
added api3 updated docs
vanshika-srivastava Jun 27, 2024
acd8356
fixed accorn error
vanshika-srivastava Jun 27, 2024
df388a9
chore(bridge): add AMB Helper contract adddress for Chiado & remove d…
zengzengzenghuy Jul 1, 2024
5d8471e
Merge branch 'main' into dev
vanshika-srivastava Jul 2, 2024
cceb811
fix(bridge): swap Gateway validator address
zengzengzenghuy Jul 3, 2024
3faed5b
Update README.md
0xarmagan Jul 8, 2024
5c7cd15
add: concurrency config to workflows
riccardo-gnosis Jul 10, 2024
ee848d0
setup shutterized gc nav bar and id
vanshika-srivastava Jul 10, 2024
538c395
Finalize merge from origin/dev
vanshika-srivastava Jul 10, 2024
6180f2a
Update Covalent content to reflect rebrand to GoldRush (#694)
harishraisinghani Jul 11, 2024
0cd401f
shutterized network gnosis specifications added
vanshika-srivastava Jul 11, 2024
cac5465
setup shutterized gc nav bar and id
vanshika-srivastava Jul 11, 2024
65b8876
add a network component button and render in md file
vanshika-srivastava Jul 11, 2024
6ef6cce
add a network component button and render in md file
vanshika-srivastava Jul 11, 2024
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
9 changes: 4 additions & 5 deletions .github/workflows/dev_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,16 @@ on:
branches:
- 'dev'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
deploy:
name: Deployment
runs-on: ubuntu-latest

steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.8.0
with:
access_token: ${{ github.token }}

- name: Remove broken apt repos [Ubuntu]
if: ${{ matrix.os }} == 'ubuntu-latest'
run: |
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/prod_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,16 @@ on:
required: true
type: string

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
deploy:
name: Deployment
runs-on: ubuntu-latest

steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.8.0
with:
access_token: ${{ github.token }}

- name: Remove broken apt repos [Ubuntu]
if: ${{ matrix.os }} == 'ubuntu-latest'
run: |
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/tag_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,16 @@ on:
permissions:
contents: write # This is required for actions/checkout and create release

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
release:
name: Github Release
runs-on: ubuntu-latest

steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.8.0
with:
access_token: ${{ github.token }}

- name: Create Github Release
uses: actions/github-script@v6
with:
Expand Down
2 changes: 2 additions & 0 deletions docs/about/tokens/gno.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,10 @@ Check out [Chiado Testnet specs](/concepts/networks/chiado#gno-token) for more i

By staking your GNO tokens, you play a vital role in securing the Gnosis chain through the validation of blocks within the PoS consensus. As a reward for your participation, you will receive staking [rewards](../../node/rewards-penalties). For a more comprehensive understanding of the validator deposit process, check the [validator deposit process](/node/manual/validator/deposit) page.


:::note Historical use of `mGNO`


Historically, deposits on the Beacon Chain were made with a token called `mGNO` ([0x722fc4DAABFEaff81b97894fC623f91814a1BF68](https://gnosisscan.io/address/0x722fc4DAABFEaff81b97894fC623f91814a1BF68)), with a conversion rate of `1 GNO = 32 mGNO`. This was done to mimic Ethereum's `32 ETH` staking requirement, but is now deprecated and no longer serves any purpose.

:::
Expand Down
2 changes: 2 additions & 0 deletions docs/bridges/About Token Bridges/amb-bridge.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ With [Telepathy added as the 8th validator](../managementdecisions.md#add-telepa
| Validator Contract (Sepolia) | [0xa0bd95dd2570632c8640ab5bc213f3a0ea33e26a](https://sepolia.etherscan.io/address/0xa0bd95dd2570632c8640ab5bc213f3a0ea33e26a) |
| AMB (Chiado) | [0x8448E15d0e706C0298dECA99F0b4744030e59d7d](https://gnosis-chiado.blockscout.com/address/0x8448E15d0e706C0298dECA99F0b4744030e59d7d) |
| Validator Contract (Chiado) | [0x9e8a89ebcb83065eaaf4b7ff720caa5e6b25c976](https://gnosis-chiado.blockscout.com/address/0x9e8a89ebcb83065eaaf4b7ff720caa5e6b25c976) |
| AMB Helper Contract (Chiado) | [0x3cc500B3c01D04C265c9293cB35BA2Fd8eA6dc1b](https://gnosis-chiado.blockscout.com/address/0x3cc500B3c01D04C265c9293cB35BA2Fd8eA6dc1b?tab=read_contract) |



</TabItem>
Expand Down
226 changes: 0 additions & 226 deletions docs/bridges/governance/README.md

This file was deleted.

Loading
Loading