-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Fork block number to debug | ||
BLOCK=0x0 | ||
# Caller | ||
FROM=0x0000000000000000000000000000000000000000 | ||
# Callee | ||
TO=0x0000000000000000000000000000000000000000 | ||
# Sent Value | ||
VALUE=0x27cdb0997a65b2de99 | ||
# Call Data | ||
CALLDATA=0x0 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
### Description | ||
PR to merge from [{{ .fromBranch }}](/axieinfinity/rns-contracts/tree/{{ .fromBranch }}) to [{{ .toBranch }}](/axieinfinity/rns-contracts/tree/{{ .toBranch }}). |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Create Pull Request From Implement To Feature | ||
on: | ||
push: | ||
branches: | ||
- 'implement-feature/**' | ||
- 'implement-feature/**/**' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
env: | ||
HEAD_BRANCH: ${{ github.head_ref || github.ref_name }} | ||
|
||
jobs: | ||
createPullRequest: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set env | ||
run: | | ||
echo "FEATURE_NAME=$(echo ${HEAD_BRANCH} | cut -d'/' -f2)" >> $GITHUB_ENV | ||
echo "FEATURE_BRANCH=feature/$(echo ${HEAD_BRANCH} | cut -d'/' -f2)" >> $GITHUB_ENV | ||
echo "IMPLEMENT_NAME=$(echo ${HEAD_BRANCH} | cut -d'/' -f3)" >> $GITHUB_ENV | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{env.FEATURE_BRANCH}} | ||
|
||
- name: Reset promotion branch | ||
run: | | ||
git fetch origin ${HEAD_BRANCH}:${HEAD_BRANCH} | ||
git reset --hard ${HEAD_BRANCH} | ||
- name: Render template | ||
id: template | ||
uses: chuhlomin/[email protected] | ||
with: | ||
template: .github/template/create-pull-request.md | ||
vars: | | ||
fromBranch: ${{env.HEAD_BRANCH}} | ||
toBranch: ${{ env.FEATURE_BRANCH }} | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v5 | ||
with: | ||
branch: ${{ env.HEAD_BRANCH }} | ||
base: ${{env.FEATURE_BRANCH}} | ||
labels: automated PR | ||
title: 'feat(${{env.FEATURE_NAME}}): implement `${{env.IMPLEMENT_NAME}}`' | ||
body: ${{ steps.template.outputs.result }} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
name: Create Pull Request From Release to Feature | ||
on: | ||
push: | ||
branches: | ||
- 'release/*' | ||
- 'release*/*' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
env: | ||
HEAD_BRANCH: ${{ github.head_ref || github.ref_name }} | ||
|
||
jobs: | ||
fetchAllFeatureBranches: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- id: step1 | ||
name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- id: step2 | ||
name: List all the remote feature branches | ||
run: | | ||
branches=$(git branch -r | grep -E '.*origin\/feature\/.*' | sed -e "s/.*origin\///" | tr "\n" " ") | ||
JSON="[" | ||
for branch in ${branches[@]}; do | ||
echo $branch | ||
JSONline="\"$branch\"," | ||
# we don't need to iterate on the same branch over and over, so | ||
# onnly include it when it wasn't included | ||
if [[ "$JSON" != *"$JSONline"* ]]; then | ||
JSON="$JSON$JSONline" | ||
fi | ||
done | ||
# Remove last "," and add the closing bracket | ||
if [[ $JSON == *, ]]; then | ||
JSON="${JSON%?}" | ||
fi | ||
JSON="$JSON]" | ||
echo $JSON | ||
echo "BRANCHES={\"branch_name\": $( echo "$JSON" )}" >> "$GITHUB_OUTPUT" | ||
outputs: | ||
BRANCHES: ${{ steps.step2.outputs.BRANCHES }} | ||
|
||
mergeRelease2FeatureRepo: | ||
runs-on: ubuntu-latest | ||
needs: fetchAllFeatureBranches | ||
strategy: | ||
matrix: ${{ fromJSON(needs.fetchAllFeatureBranches.outputs.BRANCHES) }} | ||
steps: | ||
- name: Set env | ||
run: | | ||
echo "PR_BRANCH=merge/${HEAD_BRANCH}-${{matrix.branch_name}}" >> $GITHUB_ENV | ||
echo "FEATURE_NAME=$(echo ${{matrix.branch_name}} | cut -d'/' -f2)" >> $GITHUB_ENV | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{matrix.branch_name}} | ||
- name: Reset promotion branch | ||
run: | | ||
git fetch origin ${HEAD_BRANCH}:${HEAD_BRANCH} | ||
git reset --hard ${HEAD_BRANCH} | ||
- name: Render template | ||
id: template | ||
uses: chuhlomin/[email protected] | ||
with: | ||
template: .github/template/create-pull-request.md | ||
vars: | | ||
fromBranch: ${{env.HEAD_BRANCH}} | ||
toBranch: ${{matrix.branch_name}} | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v5 | ||
with: | ||
labels: automated PR | ||
delete-branch: true | ||
title: 'chore(`${{env.FEATURE_NAME}}`): merge from `${{env.HEAD_BRANCH}}`' | ||
body: ${{ steps.template.outputs.result }} | ||
branch: ${{env.PR_BRANCH}} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ docs/ | |
# Dotenv file | ||
.env | ||
.vscode | ||
.debug.env | ||
|
||
node_modules/ | ||
yarn-error.log | ||
|
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Source (or "dot") the .env file to load environment variables | ||
if [ -f .env ]; then | ||
source .debug.env | ||
else | ||
echo "Error: .debug.env file not found." | ||
fi | ||
|
||
verify_arg="" | ||
extra_argument="" | ||
op_command="" | ||
|
||
for arg in "$@"; do | ||
case $arg in | ||
--trezor) | ||
op_command="" | ||
extra_argument+=trezor@ | ||
;; | ||
--broadcast) | ||
op_command="op run --env-file="./.env" --" | ||
;; | ||
--log) | ||
set -- "${@/#--log/}" | ||
extra_argument+=log@ | ||
;; | ||
*) ;; | ||
esac | ||
done | ||
|
||
# Remove the @ character from the end of extra_argument | ||
extra_argument="${extra_argument%%@}" | ||
|
||
echo Debug Tx... | ||
echo From: ${FROM} | ||
echo To: ${TO} | ||
echo Value: ${VALUE} | ||
echo Calldata: | ||
cast pretty-calldata ${CALLDATA} | ||
calldata=$(cast calldata 'debug(uint256,address,address,uint256,bytes)', ${BLOCK} ${FROM} ${TO} ${VALUE} ${CALLDATA}) | ||
${op_command} forge script ${verify_arg} --legacy ${@} script/Debug.s.sol --sig 'run(bytes,string)' ${calldata} "${extra_argument}" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2020 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2021 |