Skip to content

Commit

Permalink
feat: test out github action for release notes
Browse files Browse the repository at this point in the history
Signed-off-by: Elizabeth J Lee <[email protected]>
  • Loading branch information
ejlee3 committed Dec 6, 2024
1 parent 244b160 commit 49883a6
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release-notes-preview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Release-Notes-Preview

on:
push:
branches: [ main ]
issue_comment:
types: [ opened, reopened, synchronize ]

jobs:
preview:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
git fetch --prune --unshallow --tags
- uses: snyk/[email protected]
with:
releaseBranch: master
env:
GITHUB_PR_USERNAME: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 49883a6

Please sign in to comment.