Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/actions/notify-slack-publish-status/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules
*.tsbuildinfo
.eslintcache
!dist/
3 changes: 3 additions & 0 deletions .github/actions/notify-slack-publish-status/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dist/
node_modules/
pnpm-lock.yaml
15 changes: 9 additions & 6 deletions .github/actions/notify-slack-publish-status/action.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
---
name: 'Notify Slack Publish Status'
description: 'Notify Slack with the completion status of the publish action'
name: "Notify Slack Publish Status"
description: "Notify Slack with the completion status of the publish action"
inputs:
webhook:
description: "Slack incoming webhook URL"
required: true
message:
description: 'Message to send to Slack'
description: "Message to send to Slack"
required: true
default: ''
default: ""
runs:
using: 'node20'
main: 'index.js'
using: "node24"
main: "dist/index.js"
Loading
Loading