Skip to content

Commit 07b6762

Browse files
committed
add mip id
1 parent f8a0603 commit 07b6762

File tree

5 files changed

+31
-23
lines changed

5 files changed

+31
-23
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name: 'Setup MIPs Permissions'
2+
description: 'Grant execute permissions to the proposals/mips directory'
3+
runs:
4+
using: 'composite'
5+
steps:
6+
- name: Give write permissions
7+
shell: bash
8+
run: chmod -R +x proposals/mips/

.github/workflows/base-integration.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
- name: Setup Environment
2323
uses: ./.github/actions
2424

25-
- name: Give write permissions
26-
run: chmod -R +x proposals/mips/
25+
- name: Setup MIPs Permissions
26+
uses: ./.github/actions/setup-mips-permissions
2727

2828
- name: Live System Integration Tests
2929
uses: nick-fields/retry@v3
@@ -46,8 +46,8 @@ jobs:
4646
- name: Setup Environment
4747
uses: ./.github/actions
4848

49-
- name: Give write permissions
50-
run: chmod -R +x proposals/mips/
49+
- name: Setup MIPs Permissions
50+
uses: ./.github/actions/setup-mips-permissions
5151

5252
- name: Reserve Automation Integration Tests
5353
uses: nick-fields/retry@v3
@@ -135,8 +135,8 @@ jobs:
135135
- name: Setup Environment
136136
uses: ./.github/actions
137137

138-
- name: Give write permissions
139-
run: chmod -R +x proposals/mips/
138+
- name: Setup MIPs Permissions
139+
uses: ./.github/actions/setup-mips-permissions
140140

141141
- name: Run Integration Tests
142142
uses: nick-fields/retry@v3

.github/workflows/multichain-integration.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
- name: Setup Environment
2323
uses: ./.github/actions
2424

25-
- name: Give write permissions
26-
run: chmod -R +x proposals/mips/
25+
- name: Setup MIPs Permissions
26+
uses: ./.github/actions/setup-mips-permissions
2727

2828
- name: Run Integration Test
2929
uses: nick-fields/retry@v3
@@ -49,8 +49,8 @@ jobs:
4949
- name: Setup Environment
5050
uses: ./.github/actions
5151

52-
- name: Give write permission
53-
run: chmod -R +x proposals/mips/
52+
- name: Setup MIPs Permissions
53+
uses: ./.github/actions/setup-mips-permissions
5454

5555
- name: Run Integration Test
5656
uses: nick-fields/retry@v3
@@ -75,8 +75,8 @@ jobs:
7575
- name: Setup Environment
7676
uses: ./.github/actions
7777

78-
- name: Give write permissions
79-
run: chmod -R +x proposals/mips/
78+
- name: Setup MIPs Permissions
79+
uses: ./.github/actions/setup-mips-permissions
8080

8181
- name: Run Integration Test
8282
uses: nick-fields/retry@v3
@@ -111,8 +111,8 @@ jobs:
111111
run: |
112112
echo "PR_CHANGED_FILES=${{ steps.files.outputs.added_modified }}" >> $GITHUB_ENV
113113
114-
- name: Give write permissions
115-
run: chmod -R +x proposals/mips/
114+
- name: Setup MIPs Permissions
115+
uses: ./.github/actions/setup-mips-permissions
116116

117117
- name: Make the script executable
118118
run: chmod +x bin/run-onchain-calldata-check.sh
@@ -188,8 +188,8 @@ jobs:
188188
});
189189
}
190190
191-
- name: Give write permissions
192-
run: chmod -R +x proposals/mips/
191+
- name: Setup MIPs Permissions
192+
uses: ./.github/actions/setup-mips-permissions
193193

194194
- name: Run Calldata Printing
195195
uses: nick-fields/retry@v3
@@ -253,8 +253,8 @@ jobs:
253253
- name: Setup Environment
254254
uses: ./.github/actions
255255

256-
- name: Give write permissions
257-
run: chmod -R +x proposals/mips/
256+
- name: Setup MIPs Permissions
257+
uses: ./.github/actions/setup-mips-permissions
258258

259259
- name: Run Integration Test
260260
uses: nick-fields/retry@v3

.github/workflows/optimism-integration.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
- name: Setup Environment
2222
uses: ./.github/actions
2323

24-
- name: Give write permissions
25-
run: chmod -R +x proposals/mips/
24+
- name: Setup MIPs Permissions
25+
uses: ./.github/actions/setup-mips-permissions
2626

2727
- name: Live System Integration Tests
2828
uses: nick-fields/retry@v3
@@ -67,8 +67,8 @@ jobs:
6767
- name: Setup Environment
6868
uses: ./.github/actions
6969

70-
- name: Give write permissions
71-
run: chmod -R +x proposals/mips/
70+
- name: Setup MIPs Permissions
71+
uses: ./.github/actions/setup-mips-permissions
7272

7373
- name: Run Integration Tests
7474
uses: nick-fields/retry@v3

proposals/mips/mips.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
"envpath": "proposals/mips/mip-x34/x34.sh",
44
"governor": "MultichainGovernor",
5-
"id": 0,
5+
"id": 127,
66
"path": "RewardsDistribution.sol/RewardsDistributionTemplate.json",
77
"proposalType": "HybridProposal"
88
},

0 commit comments

Comments
 (0)