Skip to content

Commit c649828

Browse files
author
sergerad
committed
RM permissions block from main merge workflow and update PR template
1 parent 81d3fcc commit c649828

File tree

3 files changed

+2
-24
lines changed

3 files changed

+2
-24
lines changed

.github/pull_request_template.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Summary
22

3-
<!---
3+
<!---
44
Provide a short summary of the changes and the reasoning behind them.
55
66
Include references to related issues (e.g. #1234 which will make a direct link to the issue).
@@ -16,3 +16,4 @@ Include @mentions to any relevant contributors and maintainers.
1616
- [ ] Bugs fixed
1717
- [ ] Unit tests added or updated
1818
- [ ] E2E tests added or updated
19+
- [ ] CI updated

.github/workflows/main.yaml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ on:
66
- main
77
workflow_dispatch:
88

9-
permissions: # see this: https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs
10-
id-token: write # This is required for requesting the JWT
11-
contents: write # This is required for actions/checkout
12-
139
jobs:
1410
push:
1511
name: Push Docker
@@ -20,20 +16,3 @@ jobs:
2016
- uses: ./.github/actions/push
2117
with:
2218
github-token: ${{ secrets.GITHUB_TOKEN }}
23-
24-
tests:
25-
name: Tests
26-
runs-on: ubuntu-20-04-4-cores
27-
timeout-minutes: 35
28-
steps:
29-
- uses: actions/checkout@v4
30-
- uses: actions/setup-go@v3
31-
with:
32-
go-version: 1.20.x
33-
- name: Cache modules
34-
uses: ./.github/actions/cache/golang
35-
- name: All Tests
36-
shell: bash
37-
run: |
38-
go run build/ci.go install
39-
go test $(go list ./... | grep -v 'go-ethereum/tests/immutable') -p 1 --parallel 4 -timeout=30m

.github/workflows/pr.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: PR
22

33
on:
44
pull_request:
5-
push:
6-
branches: master
75

86
concurrency:
97
group: PR-${{ github.head_ref }}

0 commit comments

Comments
 (0)