{"id":44475624,"url":"https://github.com/senzing-factory/github-action-slack-notification","last_synced_at":"2026-02-12T22:16:48.100Z","repository":{"id":96493958,"uuid":"233135787","full_name":"senzing-factory/github-action-slack-notification","owner":"senzing-factory","description":"GitHub Action for notifying Slack","archived":false,"fork":false,"pushed_at":"2026-02-02T13:57:14.000Z","size":190,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-02-03T02:55:50.079Z","etag":null,"topics":["git-actions","senzing-factory"],"latest_commit_sha":null,"homepage":"","language":"Go","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/senzing-factory.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","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":"2020-01-10T21:48:19.000Z","updated_at":"2026-02-02T13:57:17.000Z","dependencies_parsed_at":"2024-01-18T23:08:11.675Z","dependency_job_id":"5bb79190-e28a-4a42-833a-99c0922013e9","html_url":"https://github.com/senzing-factory/github-action-slack-notification","commit_stats":null,"previous_names":["senzing-factory/git-action-slack-notification","senzing/git-action-slack-notification","senzing-factory/github-action-slack-notification"],"tags_count":2,"template":false,"template_full_name":"actions/container-action","purl":"pkg:github/senzing-factory/github-action-slack-notification","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/senzing-factory%2Fgithub-action-slack-notification","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/senzing-factory%2Fgithub-action-slack-notification/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/senzing-factory%2Fgithub-action-slack-notification/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/senzing-factory%2Fgithub-action-slack-notification/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/senzing-factory","download_url":"https://codeload.github.com/senzing-factory/github-action-slack-notification/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/senzing-factory%2Fgithub-action-slack-notification/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29383230,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T22:07:52.078Z","status":"ssl_error","status_checked_at":"2026-02-12T22:07:49.026Z","response_time":55,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["git-actions","senzing-factory"],"created_at":"2026-02-12T22:16:47.124Z","updated_at":"2026-02-12T22:16:48.095Z","avatar_url":"https://github.com/senzing-factory.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitHub Action Slack Notification\n\nGitHub Action to send messages to Slack. This action can be used to send message about the status of a GitHub Action workflow.\n\n## Usage\n\nThis action can be used after any other action. Below is simple example on using it:\n\n1\\. Create a `.github/workflows/github-action-slack-notification.yml`\n\n2\\. Add the following properties to `github-action-slack-notification.yml` file\n\n```yaml\non: push\nname: Slack Notification Demo\njobs:\n  slackNotification:\n    name: Slack Notification Demo\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n      - name: Slack Notification Demo\n        uses: senzing-factory/github-action-slack-notification@1.0.0\n        env:\n          SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}\n          SLACK_TITLE: Slack Notification Demo\n          SLACK_MESSAGE: Demo'ing the Slack Notification\n```\n\nGo [here](deployment/github-actions/template_github_action_slack_notification.yml) for a template yml with all environment variables.\n\n3\\. Generate Slack WebHook [here](https://entelexeia.slack.com/apps/A0F7XDUAZ-incoming-webhooks?next_id=0)\n\n4\\. Encrypt Slack Webhook as a secret in the repository using this app.\n\n## Environment Variables\n\nThese are the environment variables that can be set to pass in additional information about the Git Action.\n\n| Variable Name     | Required | Description                                               |\n| ----------------- | :------: | --------------------------------------------------------- |\n| GITHUB_ACTION     |    No    | GitHub Action name variable passed from Git Actions       |\n| GITHUB_ACTOR      |    No    | GitHub Actor variable passed from Git Actions             |\n| GITHUB_EVENT_NAME |    No    | GitHub Action event name variable passed from Git Actions |\n| GITHUB_REF        |    No    | GitHub reference variable passed from Git Actions         |\n| GITHUB_REPOSITORY |    No    | GitHub Repository variable passed from Git Actions        |\n| GITHUB_WORKFLOW   |    No    | GitHub Action workflow variable passed from Git Actions   |\n| SLACK_CHANNEL     |    No    | The Slack channel to use instead of the default           |\n| SLACK_COLOR       |    No    | Format color to use for the Slack message                 |\n| SLACK_ICON        |    No    | The Slack user icon to use instead of the default         |\n| SLACK_MESSAGE     |   Yes    | The message payload to be sent to Slack                   |\n| SLACK_TITLE       |   Yes    | Title of the Slack message being sent.                    |\n| SLACK_USERNAME    |    No    | The Slack username to use instead of the default          |\n| SLACK_WEBHOOK     |   Yes    | The Webhook URL generated by Slack to send messages too.  |\n\n## Reference\n\n- [Using environment variables](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/using-environment-variables) lists the default environment variables set in Git Actions.\n\n## License\n\n[Apache 2](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsenzing-factory%2Fgithub-action-slack-notification","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsenzing-factory%2Fgithub-action-slack-notification","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsenzing-factory%2Fgithub-action-slack-notification/lists"}