{"id":22347723,"url":"https://github.com/wearetechnative/slack2zammad","last_synced_at":"2025-08-25T05:18:07.556Z","repository":{"id":262464471,"uuid":"887229963","full_name":"wearetechnative/slack2zammad","owner":"wearetechnative","description":"Slack App providing a Message Shortcut to create Zammad ticket from Slack message","archived":false,"fork":false,"pushed_at":"2025-06-25T13:14:00.000Z","size":60,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-14T05:18:37.559Z","etag":null,"topics":["slack-bot","zammad"],"latest_commit_sha":null,"homepage":"","language":"Nix","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/wearetechnative.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2024-11-12T11:46:23.000Z","updated_at":"2025-03-19T08:41:09.000Z","dependencies_parsed_at":"2025-02-25T12:22:24.615Z","dependency_job_id":"f4aafc91-aafb-4f3f-b11e-10b0cc86ed37","html_url":"https://github.com/wearetechnative/slack2zammad","commit_stats":null,"previous_names":["wearetechnative/slack2zammad"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/wearetechnative/slack2zammad","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wearetechnative%2Fslack2zammad","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wearetechnative%2Fslack2zammad/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wearetechnative%2Fslack2zammad/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wearetechnative%2Fslack2zammad/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wearetechnative","download_url":"https://codeload.github.com/wearetechnative/slack2zammad/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wearetechnative%2Fslack2zammad/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272008786,"owners_count":24857658,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-25T02:00:12.092Z","response_time":1107,"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":["slack-bot","zammad"],"created_at":"2024-12-04T10:10:38.845Z","updated_at":"2025-08-25T05:18:07.533Z","avatar_url":"https://github.com/wearetechnative.png","language":"Nix","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Slack2Zammad\n\nSlack App providing a Message Shortcut to create Zammad ticket from Slack\nmessage\n\n@luca read the rought [TODO](TODO.md)\n\n## Install\n\n### Prepare Slack\n\nCreate an app with this manifest...\n\n```yaml\ndisplay_information:\n  name: In2 Zammad\n  description: Create tickets from messages\n  background_color: \"#ab6d22\"\nfeatures:\n  bot_user:\n    display_name: Zammad\n    always_online: false\n  shortcuts:\n    - name: Create ticket\n      type: message\n      callback_id: create_ticket\n      description: Creates a ticket based on the message\noauth_config:\n  scopes:\n    bot:\n      - commands\nsettings:\n  interactivity:\n    is_enabled: true\n  org_deploy_enabled: false\n  socket_mode_enabled: true\n  token_rotation_enabled: false\n```\n\nCurrently only the socket mode is working.\n\n### Configure environment vars\n\nCreate a .env-file or set environment vars.\n\n```bash\nSLACK_APP_TOKEN=xoxb-XXXX....\nSLACK_BOT_TOKEN=xapp-XXXX....\nZAMMAD_URL=https://my-zammad-domain.com\nZAMMAD_USER=zammad_user\nZAMMAD_PASSWD=zammad_password\n```\n\n### Without Nix\n\nInstall requirements with Pip of if you have a working nix with flake enabled.\n\n### With Nix\n\nnix develop\n\n### Start application\n\npython app.py\n\n### Install on nixos\n\n```\n{\n  inputs = {\n    nixpkgs.url = \"github:NixOS/nixpkgs/nixos-24.11\";\n    slack2zammad.url = \"github:wearetechnative/slack2zammad\"\n  };\n  outputs = { nixpkgs, slack2zammad, ... }: {\n    nixosConfigurations.\u003cname\u003e = nixpkgs.lib.nixosSystem {\n      system = \"x86_64-linux\";\n      modules = [ \n          slack2zammad.packages.\"${system}\".slack2zammad # slack2zammad Package\n          slack2zammad.nixosModules.${system}.slack2zammad # Slack2zammad Module\n      ];\n    };\n  };\n}\n```\n\n### slack2zammad Module\nCreate an `slack2zammad.env` file in `/etc`, look at `.env.sample`.\n``` \n{ slack2zammad, ... }:\n\n{\n  services.slack2zammad = {\n    enable  = true;\n    envFile = \"/etc/slack2zammad.env\"; # Default\n    group   = \"slack2zammad\"; # Default\n    user    = \"slack2zammad\"; # Default\n  };\n}\n```\n\n## CONTRIBUTE\n\n### Issues, Bugs, and Feature Requests\n\nFile issue requests [in this repo](https://github.com/wearetechnative/slack2zammad/issues/new)\n\n### Open Source \u0026 Contributing\n\nSlack2zammad is open source and we appreciate contributions and positive feedback.\n\n### Docs for Project Maintainers\n\nRead the docs and roadmaps\n\n- [Release runbook](RELEASE-RUNBOOK.md)\n- [Roadmap](TODO.md)\n- [Changelog](CHANGELOG.md)\n\n## Credits\n\n- [Zammad](https://zammad.com) - a great supportdesk system\n- [zammadoo](https://github.com/flashdagger/zammadoo) - a fresh but nice working python client for Zammad\n\n## License and Copyright\n\nCopyright 2025 [TechNative B.V.](https://technative.eu) | Published under the [Apache License](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwearetechnative%2Fslack2zammad","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwearetechnative%2Fslack2zammad","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwearetechnative%2Fslack2zammad/lists"}