We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97a6d08 commit e10728eCopy full SHA for e10728e
1 file changed
.github/workflows/e2e.yml
@@ -4,6 +4,9 @@ on:
4
schedule:
5
- cron: '0 3 * * *' # Run nightly at 03:00 UTC
6
workflow_dispatch: {}
7
+ push:
8
+ paths:
9
+ - '.github/workflows/e2e.yml'
10
11
permissions:
12
contents: read
@@ -17,6 +20,13 @@ jobs:
17
20
steps:
18
21
- name: Checkout
19
22
uses: actions/checkout@v4
23
+ - name: GitHub CLI - authenticate and show auth status
24
+ env:
25
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26
+ run: |
27
+ gh auth status
28
+ echo "$GITHUB_TOKEN" | gh auth login --with-token
29
30
- name: Run e2e tests and publish output to job summary
31
env:
32
GITHUB_STEP_SUMMARY: ${{ github.step_summary }}
0 commit comments