{"id":20677805,"url":"https://github.com/clivern/pushover-actions","last_synced_at":"2025-04-19T21:04:07.964Z","repository":{"id":37025288,"uuid":"250076162","full_name":"Clivern/pushover-actions","owner":"Clivern","description":"🧬 Push notifications for github repository changes through pushover.","archived":false,"fork":false,"pushed_at":"2024-10-02T03:28:22.000Z","size":55,"stargazers_count":4,"open_issues_count":5,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-10-07T07:21:02.448Z","etag":null,"topics":["clivern","github-actions","github-events","github-webhooks"],"latest_commit_sha":null,"homepage":"https://pushover.net/","language":"Go","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/Clivern.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","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},"funding":{"github":"clivern"}},"created_at":"2020-03-25T19:48:12.000Z","updated_at":"2024-07-03T15:51:23.000Z","dependencies_parsed_at":"2023-02-10T12:16:21.155Z","dependency_job_id":"741a4549-3842-4fe7-aec7-8885b5662861","html_url":"https://github.com/Clivern/pushover-actions","commit_stats":{"total_commits":29,"total_committers":3,"mean_commits":9.666666666666666,"dds":0.4482758620689655,"last_synced_commit":"9f8bc9175772aee7d550acc68f7c322ec5f72494"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Clivern%2Fpushover-actions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Clivern%2Fpushover-actions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Clivern%2Fpushover-actions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Clivern%2Fpushover-actions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Clivern","download_url":"https://codeload.github.com/Clivern/pushover-actions/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224930289,"owners_count":17393950,"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","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":["clivern","github-actions","github-events","github-webhooks"],"created_at":"2024-11-16T21:17:09.977Z","updated_at":"2024-11-16T21:17:10.467Z","avatar_url":"https://github.com/Clivern.png","language":"Go","readme":"\u003cp align=\"center\"\u003e\n    \u003cimg alt=\"Pushover Actions Logo\" src=\"https://raw.githubusercontent.com/Clivern/pushover-actions/master/assets/images/logo.png\" height=\"130\" /\u003e\n    \u003ch3 align=\"center\"\u003ePushover Actions\u003c/h3\u003e\n    \u003cp align=\"center\"\u003ePush notifications for github repository changes through pushover\u003c/p\u003e\n    \u003cp align=\"center\"\u003e\n        \u003ca href=\"https://travis-ci.com/Clivern/pushover-actions\"\u003e\u003cimg src=\"https://travis-ci.com/Clivern/pushover-actions.svg?branch=master\"\u003e\u003c/a\u003e\n            \u003ca href=\"https://github.com/Clivern/pushover-actions/actions\"\u003e\u003cimg src=\"https://github.com/Clivern/pushover-actions/workflows/pushover-actions/badge.svg\"\u003e\u003c/a\u003e\n        \u003ca href=\"https://github.com/Clivern/pushover-actions/releases\"\u003e\u003cimg src=\"https://img.shields.io/badge/Version-0.0.6-red.svg\"\u003e\u003c/a\u003e\n         \u003ca href=\"https://hub.docker.com/r/clivern/pushover-actions\"\u003e\u003cimg src=\"https://img.shields.io/badge/Docker-Latest-green\"\u003e\u003c/a\u003e\n        \u003ca href=\"https://github.com/Clivern/pushover-actions/blob/master/LICENSE\"\u003e\u003cimg src=\"https://img.shields.io/badge/LICENSE-MIT-orange.svg\"\u003e\u003c/a\u003e\n    \u003c/p\u003e\n\u003c/p\u003e\n\n\n## Documentation\n\n#### Setup the Github Action:\n\n1. First create [pushover application](https://pushover.net/) and get a token and user key.\n\n2. Create github action by adding the following to your `workflow.yml`.\n\n```yml\nname: workflow_name\n\non:\n    # may vary based on modules enabled\n\njobs:\n  pushover-actions:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v2 # required to clone your code\n      - name: pushover-actions\n        uses: clivern/pushover-actions@master\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n          PUSHOVER_TOKEN: ${{ secrets.PUSHOVER_TOKEN }}\n          PUSHOVER_USER: ${{ secrets.PUSHOVER_USER }}\n```\n\n3. Add pushover token as `PUSHOVER_TOKEN` and user key as `PUSHOVER_USER` in *github settings \u003e secrets page*.\n\n4. [Check this workflow as an example](https://github.com/Clivern/pushover-actions/blob/master/.github/workflows/pushover-actions.yml)\n\n```yml\nname: pushover-actions\n\non:\n  issues:\n    types: [opened, edited]\n\njobs:\n  pushover-actions:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v2 # required to clone your code\n      - name: pushover-actions\n        uses: clivern/pushover-actions@master\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n          PUSHOVER_TOKEN: ${{ secrets.PUSHOVER_TOKEN }}\n          PUSHOVER_USER: ${{ secrets.PUSHOVER_USER }}\n```\n\n\n## Versioning\n\nFor transparency into our release cycle and in striving to maintain backward compatibility, Pushover Actions is maintained under the [Semantic Versioning guidelines](https://semver.org/) and release process is predictable and business-friendly.\n\nSee the [Releases section of our GitHub project](https://github.com/clivern/pushover-actions/releases) for changelogs for each release version of Pushover Actions. It contains summaries of the most noteworthy changes made in each release.\n\n\n## Bug tracker\n\nIf you have any suggestions, bug reports, or annoyances please report them to our issue tracker at https://github.com/clivern/pushover-actions/issues\n\n\n## Security Issues\n\nIf you discover a security vulnerability within Pushover Actions, please send an email to [hello@clivern.com](mailto:hello@clivern.com)\n\n\n## Contributing\n\nWe are an open source, community-driven project so please feel free to join us. see the [contributing guidelines](CONTRIBUTING.md) for more details.\n\n\n## License\n\n© 2020, Clivern. Released under [MIT License](https://opensource.org/licenses/mit-license.php).\n\n**Pushover-Actions** is authored and maintained by [@Clivern](https://github.com/clivern).\n","funding_links":["https://github.com/sponsors/clivern"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclivern%2Fpushover-actions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fclivern%2Fpushover-actions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclivern%2Fpushover-actions/lists"}