We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e24c5b3 commit ee21b53Copy full SHA for ee21b53
1 file changed
.github/workflows/tests.yaml
@@ -11,20 +11,22 @@ on:
11
push:
12
workflow_dispatch:
13
14
-permissions: {}
+permissions:
15
+ contents: read
16
17
jobs:
18
tests:
19
runs-on: ubuntu-24.04
20
- permissions:
21
- contents: read
22
-
23
steps:
24
- name: Echo context
25
env:
26
GH_JSON: ${{ toJson(github) }}
27
- run: echo "$GH_JSON"
+ run: |
+ echo "GITHUB_SHA $GITHUB_SHA"
+ echo "GITHUB_REF $GITHUB_REF"
28
+ echo "GITHUB_REF_NAME $GITHUB_REF_NAME"
29
+ echo "$GH_JSON"
30
31
- name: Checkout action
32
uses: actions/checkout@v4
0 commit comments