forked from harnessclaw/harnessclaw
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (29 loc) · 861 Bytes
/
Copy pathdebug-issues-closed.yml
File metadata and controls
32 lines (29 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Debug Issues Closed
on:
issues:
types:
- closed
workflow_dispatch:
jobs:
debug-issues-closed:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Print issue metadata
env:
ISSUE_NUMBER: ${{ github.event.issue.number }}
ISSUE_TITLE: ${{ github.event.issue.title }}
ISSUE_LABELS: ${{ join(github.event.issue.labels.*.name, ', ') }}
REPOSITORY: ${{ github.repository }}
ACTOR: ${{ github.actor }}
run: |
echo "issue_number=$ISSUE_NUMBER"
echo "issue_title=$ISSUE_TITLE"
echo "issue_labels=$ISSUE_LABELS"
echo "repository=$REPOSITORY"
echo "actor=$ACTOR"
- name: Print event payload
run: |
echo "event_path=$GITHUB_EVENT_PATH"
cat "$GITHUB_EVENT_PATH"