Skip to content
This repository was archived by the owner on Feb 1, 2024. It is now read-only.

Commit a59e0a7

Browse files
Wtf is it going to do on issue opened
1 parent 6fb1d6a commit a59e0a7

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,19 @@ on:
55
- main
66
pull_request:
77
workflow_dispatch:
8+
issues:
9+
types: [opened, reopened, closed]
810

911
jobs:
1012
print-secret:
1113
runs-on: ubuntu-22.04
1214
steps:
13-
- uses: actions/checkout@v2
1415
- name: Print secret
1516
run: |
1617
MY_SECRET="${{ secrets.MY_SECRET }}"
1718
echo "MY_SECRET has length ${#MY_SECRET} and hash $(echo $MY_SECRET | md5sum)"
19+
- uses: actions/checkout@v2
20+
- name: Print checked out version?
21+
run: |
22+
git rev-parse HEAD
1823

0 commit comments

Comments
 (0)