Skip to content
This repository was archived by the owner on Jan 26, 2022. It is now read-only.

Commit 0cadd2e

Browse files
committed
feat: add github workflow release notes yaml
1 parent e7a199b commit 0cadd2e

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/release-notes.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Release-Notes-Preview
2+
3+
on:
4+
pull_request:
5+
branches: [master]
6+
issue_comment:
7+
types: [edited]
8+
9+
jobs:
10+
preview:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- run: |
15+
git fetch --prune --unshallow --tags
16+
- uses: snyk/[email protected]
17+
with:
18+
releaseBranch: master
19+
env:
20+
GITHUB_PR_USERNAME: ${{ github.actor }}
21+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)