feat(e2e): add workflow to trigger e2e test suite through PR comments (#3153)
* feat(e2e): add workflow to trigger e2e test suite through PR comments * add empty line
This commit is contained in:
parent
4eaa1bcfd5
commit
9667bce094
|
|
@ -0,0 +1,14 @@
|
||||||
|
name: E2E
|
||||||
|
|
||||||
|
on:
|
||||||
|
issue_comment:
|
||||||
|
types: [created]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
e2e:
|
||||||
|
uses: oauth2-proxy/e2e-suite/.github/workflows/e2e.yml@main
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
statuses: write
|
||||||
|
issues: write
|
||||||
|
pull-requests: write
|
||||||
Loading…
Reference in New Issue