mirror of
https://github.com/Lissy93/dashy.git
synced 2024-11-24 05:56:49 +03:00
19 lines
575 B
YAML
19 lines
575 B
YAML
# Shows changes to any yarn.lock in PR comment
|
|
# Useful for easily understanding dependency changes and consequences
|
|
name: 💡 Show Dependency Changes
|
|
on: [pull_request]
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Yarn Lock Changes
|
|
uses: Simek/yarn-lock-changes@main
|
|
with:
|
|
token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
|
|
collapsibleThreshold: '25'
|
|
failOnDowngrade: 'false'
|
|
path: 'yarn.lock'
|
|
updateComment: 'true'
|