We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f688d2a commit 61ec5afCopy full SHA for 61ec5af
.github/workflows/e2e-test.yml
@@ -26,12 +26,16 @@ jobs:
26
github.event.pull_request.head.repo.full_name != github.repository &&
27
'external' || 'internal' }}
28
runs-on: ubuntu-latest
29
+ concurrency:
30
+ group: ${{ github.event_name == 'pull_request_target' && format('e2e-authorize-pr-{0}', github.event.pull_request.number) || 'e2e-authorize' }}
31
+ cancel-in-progress: true
32
steps:
33
- run: true
34
35
e2e-test:
36
needs: authorize
37
38
+ concurrency: 'e2e-test'
39
40
- name: Set up Go
41
uses: actions/setup-go@v4
0 commit comments