We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b4a3cd commit a0c9df7Copy full SHA for a0c9df7
1 file changed
.github/workflows/cicd.yml
@@ -24,15 +24,19 @@ jobs:
24
- name: Install Dependencies
25
run: npm install
26
27
- - name: Run Dependabot Simulation
28
- run: echo "Dependabot updates are being checked..."
+ - name: Check outdated Package
+ id: outdated-packages
29
+ run: |
30
+ npm outdated || echo "No outdated packages found"
31
- - name: Notify Slack - Workflow Completed
32
+ - name: Notify Slack - Outdated Packages
33
uses: act10ns/slack@v2
34
with:
35
status: success
36
channel: '#github-to-slack-notification'
- message: "Workflow completed: Dependabot has finished checking npm packages."
37
+ message: |
38
+ Following outdated packages found
39
+ ${{ steps.outdated-packages.outputs.result }}
40
if: always()
41
42
0 commit comments