Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/assign.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Installing Go
uses: actions/setup-go@v4
with:
go-version-file: .github/shared-workflows/bot/go.mod
go-version: 'stable'
# Run "check" subcommand on bot.
- name: Assigning reviewers
run: cd .github/shared-workflows/bot && go run main.go -workflow=assign -token="${{ secrets.GITHUB_TOKEN }}" -reviewers="${{ secrets.reviewers }}"
2 changes: 1 addition & 1 deletion .github/workflows/backport.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Installing Go
uses: actions/setup-go@v4
with:
go-version-file: .github/shared-workflows/bot/go.mod
go-version: 'stable'
# Run "check" subcommand on bot.
- name: Backport PR
run: ( cd .github/shared-workflows/bot && go build ) && .github/shared-workflows/bot/bot -workflow=backport -token="${{ steps.generate_token.outputs.token }}" -reviewers="${{ secrets.reviewers }}"
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ jobs:
- name: Installing Go
uses: actions/setup-go@v4
with:
go-version-file: .github/shared-workflows/bot/go.mod
go-version: 'stable'
- name: Validate the changelog entry
run: cd .github/shared-workflows/bot && go run main.go -workflow=changelog -token="${{ secrets.GITHUB_TOKEN }}" -reviewers="${{ secrets.reviewers }}"
2 changes: 1 addition & 1 deletion .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Installing Go
uses: actions/setup-go@v4
with:
go-version-file: .github/shared-workflows/bot/go.mod
go-version: 'stable'
# Run "check" subcommand on bot.
- name: Checking reviewers
run: cd .github/shared-workflows/bot && go run main.go -workflow=check -token="${{ steps.generate_token.outputs.token }}" -reviewers="${{ secrets.reviewers }}"
2 changes: 1 addition & 1 deletion .github/workflows/dismiss.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Installing Go
uses: actions/setup-go@v4
with:
go-version-file: .github/shared-workflows/bot/go.mod
go-version: 'stable'
# Run "dismiss" subcommand on bot.
- name: Dismiss
run: cd .github/shared-workflows/bot && go run main.go -workflow=dismiss -token="${{ secrets.GITHUB_TOKEN }}" -reviewers="${{ secrets.reviewers }}"
2 changes: 1 addition & 1 deletion .github/workflows/label.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Installing Go
uses: actions/setup-go@v4
with:
go-version-file: .github/shared-workflows/bot/go.mod
go-version: 'stable'
# Run "check" subcommand on bot.
- name: Labeling PR
run: cd .github/shared-workflows/bot && go run main.go -workflow=label -token="${{ secrets.GITHUB_TOKEN }}" -reviewers="${{ secrets.reviewers }}"