We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f2afc1 commit 2f8dd2fCopy full SHA for 2f8dd2f
.github/workflows/issue.yml
@@ -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