{"id":24465710,"url":"https://github.com/jmpa-io/post-to-slack","last_synced_at":"2026-02-07T00:36:20.129Z","repository":{"id":186327840,"uuid":"474822963","full_name":"jmpa-io/post-to-slack","owner":"jmpa-io","description":"🐋 A GitHub Action for sending notifications from running jobs to Slack (via a given webhook). ","archived":false,"fork":false,"pushed_at":"2025-01-13T20:12:40.000Z","size":7905,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-11T18:46:21.017Z","etag":null,"topics":["actions"],"latest_commit_sha":null,"homepage":"","language":"Makefile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jmpa-io.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}},"created_at":"2022-03-28T02:49:20.000Z","updated_at":"2025-01-13T20:12:44.000Z","dependencies_parsed_at":null,"dependency_job_id":"8c69a548-a889-40f9-ba6d-5038a2895dae","html_url":"https://github.com/jmpa-io/post-to-slack","commit_stats":null,"previous_names":["jmpa-io/post-to-slack"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jmpa-io/post-to-slack","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmpa-io%2Fpost-to-slack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmpa-io%2Fpost-to-slack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmpa-io%2Fpost-to-slack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmpa-io%2Fpost-to-slack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jmpa-io","download_url":"https://codeload.github.com/jmpa-io/post-to-slack/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmpa-io%2Fpost-to-slack/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29182096,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-06T23:15:33.022Z","status":"ssl_error","status_checked_at":"2026-02-06T23:15:09.128Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["actions"],"created_at":"2025-01-21T06:12:41.096Z","updated_at":"2026-02-07T00:36:20.083Z","avatar_url":"https://github.com/jmpa-io.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!-- markdownlint-disable MD041 MD010 MD034 --\u003e\n[![README.yml](https://github.com/jmpa-io/post-to-slack/actions/workflows/README.yml/badge.svg)](https://github.com/jmpa-io/post-to-slack/actions/workflows/README.yml)\n[![cicd.yml](https://github.com/jmpa-io/post-to-slack/actions/workflows/cicd.yml/badge.svg)](https://github.com/jmpa-io/post-to-slack/actions/workflows/cicd.yml)\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"docs/logo.png\"/\u003e\n\u003c/p\u003e\n\n# `post-to-slack`\n\n```diff\n+ 🐋 A GitHub Action for sending notifications from running jobs to Slack (via a\n+ given webhook).\n```\n\n* Inspired by [`action-slack` by `8398a7`](https://github.com/8398a7/action-slack); Created using [this doc](https://docs.github.com/en/free-pro-team@latest/actions/creating-actions/creating-a-docker-container-action) from GitHub.\n\n## `usage`\n\nGeneral:\n\n```yaml\n- name: Post to Slack.\n  uses: jmpa-io/post-to-slack@main\n  with:\n    webhook: ${{ secrets.SLACK_WEBHOOK_URL }}\n    status: ${{ job.status }}\n```\n\u003e If you're unsure how to create the `${{ secrets.SLACK_WEBHOOK_URL }}`, see [this doc from Slack around creating a custom Slack App for your Slack workspace](ttps://api.slack.com/messaging/webhooks).\n\n\u003e If you're unsure how to retrieve the `${{ job.status }}`, see [this GitHub Action called `determine-workflow-conclusion`](https://github.com/jmpa-io/determine-workflow-conclusion).\n\nWith if conditionals ([see doc](https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#job-status-check-functions)):\n\n```yaml\n- name: Post to Slack.\n  if: success() # accepts: success(), always(), cancelled(), failure()\n  uses: jmpa-io/post-to-slack@main\n  with:\n    webhook: ${{ secrets.SLACK_WEBHOOK_URL }}\n    status: ${{ job.status }}\n```\n\n## `inputs`\n\n### (required) `webhook`\n\nThe Slack webhook to post to. This is created / managed\nby a custom Slack App in your Slack workspace.\n\n### (required) `status`\n\nThe status of the running GitHub Action job.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjmpa-io%2Fpost-to-slack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjmpa-io%2Fpost-to-slack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjmpa-io%2Fpost-to-slack/lists"}