Skip to content

Commit 420fe71

Browse files
committed
chore: ready for review
1 parent bd874cd commit 420fe71

File tree

3 files changed

+11
-13
lines changed

3 files changed

+11
-13
lines changed

.github/workflows/go.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
name: Go
22

33
on:
4-
# DO NOT MERGE: disabled while developing auto-renaming
5-
# push:
6-
# branches: [ main ]
7-
# pull_request:
8-
# branches: [ main ]
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
98
workflow_dispatch:
109

1110
jobs:

.github/workflows/golangci-lint.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
name: golangci-lint
22

33
on:
4-
# DO NOT MERGE: disabled while developing auto-renaming
5-
# push:
6-
# branches: [ main ]
7-
# pull_request:
8-
# branches: [ main ]
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
98
workflow_dispatch:
109

1110
permissions:

.github/workflows/rename-module.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ on:
66
# However, they MUST be disabled again before merging otherwise *all* PRs will
77
# run this.
88
#
9-
pull_request:
10-
branches: [ main ]
9+
# pull_request:
10+
# branches: [ main ]
1111
workflow_dispatch:
1212
inputs:
1313
source_commit:
@@ -71,7 +71,7 @@ jobs:
7171
- name: Open PR to "renamed-go-module" iff workflow dispatched on "main"
7272
# If we are changing the way in which we manage module renaming then it
7373
# MUST go through PR review to main; only then can it open PRs.
74-
# if: github.event_name == 'workflow_dispatch' && github.ref != 'refs/heads/main'
74+
if: github.event_name == 'workflow_dispatch' && github.ref != 'refs/heads/main'
7575
uses: devops-infra/[email protected]
7676
with:
7777
github_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)