Skip to content

Commit 2f8dd2f

Browse files
testing
1 parent 7f2afc1 commit 2f8dd2f

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/issue.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
2+
# Runs changelog related jobs.
3+
# CI job heavily inspired by: https://github.com/tarides/changelog-check-action
4+
5+
name: changelog
6+
7+
on:
8+
pull_request:
9+
types: [opened, reopened]
10+
11+
jobs:
12+
changelog:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Log stuff
16+
run: |
17+
echo Issue url: ${{ github.event.pull_request.issue_url }}
18+
echo ID: ${{ github.event.pull_request.id }}
19+
echo Node ID: ${{ github.event.pull_request.node_id }}
20+
echo Number: ${{ github.event.pull_request.number }}
21+
echo Links: ${{ github.event.pull_request._links.issue.href }}

0 commit comments

Comments
 (0)