{"id":19633260,"url":"https://github.com/quipper/slack-notification-action","last_synced_at":"2026-04-17T02:01:23.173Z","repository":{"id":138194110,"uuid":"543378796","full_name":"quipper/slack-notification-action","owner":"quipper","description":"Notify workflow run of GitHub Actions to Slack","archived":false,"fork":false,"pushed_at":"2026-04-12T18:43:12.000Z","size":15350,"stargazers_count":3,"open_issues_count":1,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-04-12T20:27:56.359Z","etag":null,"topics":["github-actions","slack"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/quipper.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-09-30T01:03:47.000Z","updated_at":"2026-04-12T18:42:45.000Z","dependencies_parsed_at":null,"dependency_job_id":"faf4e07f-292f-468e-938c-f793805e7692","html_url":"https://github.com/quipper/slack-notification-action","commit_stats":null,"previous_names":[],"tags_count":71,"template":false,"template_full_name":null,"purl":"pkg:github/quipper/slack-notification-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quipper%2Fslack-notification-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quipper%2Fslack-notification-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quipper%2Fslack-notification-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quipper%2Fslack-notification-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/quipper","download_url":"https://codeload.github.com/quipper/slack-notification-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quipper%2Fslack-notification-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31911846,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"online","status_checked_at":"2026-04-17T02:00:06.879Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["github-actions","slack"],"created_at":"2024-11-11T12:16:49.976Z","updated_at":"2026-04-17T02:01:23.145Z","avatar_url":"https://github.com/quipper.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# slack-notification-action [![ts](https://github.com/quipper/slack-notification-action/actions/workflows/ts.yaml/badge.svg)](https://github.com/quipper/slack-notification-action/actions/workflows/ts.yaml)\n\nThis is an action to notify a status of GitHub Actions to a Slack channel.\n\n## Example\n\n\u003cimg width=\"450\" alt=\"image\" src=\"https://github.com/quipper/slack-notification-action/assets/321266/d37350a5-36fa-4d4f-ad47-c8cc2c9bd25c\"\u003e\n\n\u003c!--\n# preview on https://app.slack.com/block-kit-builder\n{\n\t\"blocks\": [\n\t\t{\n\t\t\t\"type\": \"section\",\n\t\t\t\"text\": {\n\t\t\t\t\"type\": \"mrkdwn\",\n\t\t\t\t\"text\": \"Check the failure of workflow *\u003chttps://github.com/octocat/example|backend / test\u003e*\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"type\": \"section\",\n\t\t\t\"text\": {\n\t\t\t\t\"type\": \"mrkdwn\",\n\t\t\t\t\"text\": \"```\\nProcess completed with exit code 1.\\n```\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"type\": \"context\",\n\t\t\t\"elements\": [\n\t\t\t\t{\n\t\t\t\t\t\"type\": \"mrkdwn\",\n\t\t\t\t\t\"text\": \"octocat/example/*main*\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"type\": \"mrkdwn\",\n\t\t\t\t\t\"text\": \"\u003chttps://github.com/octocat/example/pull/123|#123\u003e\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"type\": \"mrkdwn\",\n\t\t\t\t\t\"text\": \"@octocat\"\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t]\n}\n--\u003e\n\n## Getting Started\n\nTo nofity a failure of workflow run on `main` branch,\n\n```yaml\nname: slack-notification\n\non:\n  workflow_run:\n    workflows:\n      - \"**\"\n      # you can exclude some workflows, like:\n      # - '!*-metrics'\n    branches:\n      - main\n    types:\n      - completed\n\njobs:\n  send:\n    if: github.event.workflow_run.conclusion == 'failure'\n    runs-on: ubuntu-latest\n    timeout-minutes: 10\n    steps:\n      - uses: quipper/slack-notification-action@v2\n        with:\n          slack-channel-id: ABCDEF123 # your Slack channel ID\n          slack-app-token: ${{ secrets.SLACK_APP_TOKEN }}\n```\n\nYou need to set up your Slack App.\nSee https://github.com/slackapi/slack-github-action for details.\n\n## Specification\n\nThis action ignores an event if the conclusion is cancelled or skipped.\n\nWhen this action is run on `workflow_run` event, it inspects the target workflow run.\nOtherwise, it inspects the current workflow run.\n\n### Inputs\n\n| Name               | Default        | Description                                                             |\n| ------------------ | -------------- | ----------------------------------------------------------------------- |\n| `slack-channel-id` | (required)     | ID of the Slack channel                                                 |\n| `slack-thread-ts`  | -              | Thread timestamp to post message in                                     |\n| `slack-app-token`  | -              | Bot token of Slack App. If not set, dry run is performed                |\n| `github-token`     | `github.token` | GitHub token                                                            |\n| `mention-message`  | `github.actor` | Message to mention the current user. Set to empty to disable mentioning |\n\n### Outputs\n\nNone.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquipper%2Fslack-notification-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fquipper%2Fslack-notification-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquipper%2Fslack-notification-action/lists"}