{"id":18603000,"url":"https://github.com/devlooped/actions-sponsor","last_synced_at":"2025-04-10T19:31:21.722Z","repository":{"id":56816865,"uuid":"523750384","full_name":"devlooped/actions-sponsor","owner":"devlooped","description":"A GitHub Action that labels issues and pull requests if the creator is a sponsor.","archived":false,"fork":false,"pushed_at":"2025-03-25T00:30:41.000Z","size":32,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-25T03:34:09.927Z","etag":null,"topics":["actions","github","github-actions"],"latest_commit_sha":null,"homepage":null,"language":"PowerShell","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/devlooped.png","metadata":{"files":{"readme":"readme.md","changelog":"changelog.md","contributing":null,"funding":".github/FUNDING.yml","license":"license.txt","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},"funding":{"github":"devlooped"}},"created_at":"2022-08-11T14:17:01.000Z","updated_at":"2025-02-08T06:05:01.000Z","dependencies_parsed_at":"2025-03-18T01:24:34.057Z","dependency_job_id":"b5e6c9c6-6e00-4b78-b529-14ae09bc713d","html_url":"https://github.com/devlooped/actions-sponsor","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlooped%2Factions-sponsor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlooped%2Factions-sponsor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlooped%2Factions-sponsor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlooped%2Factions-sponsor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devlooped","download_url":"https://codeload.github.com/devlooped/actions-sponsor/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248281400,"owners_count":21077423,"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":["actions","github","github-actions"],"created_at":"2024-11-07T02:13:11.716Z","updated_at":"2025-04-10T19:31:16.707Z","avatar_url":"https://github.com/devlooped.png","language":"PowerShell","funding_links":["https://github.com/sponsors/devlooped","https://github.com/sponsors"],"categories":[],"sub_categories":[],"readme":"# 💜 sponsor\n\nA GitHub Action that labels issues and pull requests if the creator is a sponsor, \nor belongs to an organization that is.\n\n## Usage\n\n```\n- name: 💜 sponsor\n  uses: devlooped/actions-sponsor@v1\n  with:\n    # The label to apply to the issue or pull request. \n    # Defaults to \"sponsor 💜\".\n    label: ''\n\n    # The label to apply when sponsor amount is above the gold-amount. \n    # Defaults to \"sponsor 💛\".\n    gold-label: ''\n\n    # Sponsors over this amount are labeled with gold-label instead. \n    # Defaults to 100.\n    gold-amount: ''\n\n    # The account to check for sponsorship. \n    # Defaults to the repository owner `${{ github.repository.owner }}`\n    sponsorable: ''\n\n    # The token to use for querying the GitHub API for sponsorship information. \n    # Typically set to ${{ secrets.GH_TOKEN }}.\n    token: ''\n```\n\n\u003e NOTE: in order to detect the sponsorship tier to trigger gold sponsor labeling, \n\u003e the token must be an owner of the sponsorable organization. Otherwise, only   \n\u003e base sponsoring is detected.\n\n## Example\n\nMinimal example, using default labels, repo owner and gold label threshold:\n\n```yml\nname: sponsor 💜\non: \n  issues:\n    types: [opened, edited, reopened]\n  pull_request:\n    types: [opened, edited, synchronize, reopened]\n\njobs:\n  sponsor:\n    runs-on: ubuntu-latest\n    if: ${{ !endsWith(github.event.sender.login, '[bot]') \u0026\u0026 !endsWith(github.event.sender.login, 'bot') }}      \n    steps:\n      - name: 🤘 checkout\n        uses: actions/checkout@v2\n    \n      - name: 💜 sponsor \n        uses: devlooped/actions-sponsor@v1\n        with:\n          token: ${{ secrets.GH_TOKEN }}\n```\n\n\u003e NOTE: you will typically want to skip running the workflow at all for bot accounts, hence the `if` above.\n\nFull example overriding all values (and running on *all* issue/PR events):\n\n```yml\nname: sponsor 💜\non: [issues, pull_request]\n\njobs:\n  sponsor:\n    runs-on: ubuntu-latest\n    if: ${{ !endsWith(github.event.sender.login, '[bot]') \u0026\u0026 !endsWith(github.event.sender.login, 'bot') }}      \n    steps:\n      - name: 🤘 checkout\n        uses: actions/checkout@v2\n\n      - name: 💜 sponsor \n        uses: devlooped/actions-sponsor@v1\n        with:\n          label: sponsor\n          gold-label: gold sponsor\n          gold-amount: 1000\n          sponsorable: moq\n          token: ${{ secrets.MOQ_TOKEN }}\n```\n\nNote: the provided token must have access to retrieve sponsorships for \nthe sponsorable account.\n\n\u003c!-- include https://github.com/devlooped/sponsors/raw/main/footer.md --\u003e\n# Sponsors \n\n\u003c!-- sponsors.md --\u003e\n[![Clarius Org](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/clarius.png \"Clarius Org\")](https://github.com/clarius)\n[![Kirill Osenkov](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/KirillOsenkov.png \"Kirill Osenkov\")](https://github.com/KirillOsenkov)\n[![MFB Technologies, Inc.](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/MFB-Technologies-Inc.png \"MFB Technologies, Inc.\")](https://github.com/MFB-Technologies-Inc)\n[![Stephen Shaw](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/decriptor.png \"Stephen Shaw\")](https://github.com/decriptor)\n[![Torutek](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/torutek-gh.png \"Torutek\")](https://github.com/torutek-gh)\n[![DRIVE.NET, Inc.](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/drivenet.png \"DRIVE.NET, Inc.\")](https://github.com/drivenet)\n[![David Kean](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/davkean.png \"David Kean\")](https://github.com/davkean)\n[![](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/chiluap.png \"\")](https://github.com/chiluap)\n[![Daniel Gnägi](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/dgnaegi.png \"Daniel Gnägi\")](https://github.com/dgnaegi)\n[![Ashley Medway](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/AshleyMedway.png \"Ashley Medway\")](https://github.com/AshleyMedway)\n[![Keith Pickford](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/Keflon.png \"Keith Pickford\")](https://github.com/Keflon)\n[![bitbonk](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/bitbonk.png \"bitbonk\")](https://github.com/bitbonk)\n[![Thomas Bolon](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/tbolon.png \"Thomas Bolon\")](https://github.com/tbolon)\n[![Yurii Rashkovskii](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/yrashk.png \"Yurii Rashkovskii\")](https://github.com/yrashk)\n[![Kori Francis](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/kfrancis.png \"Kori Francis\")](https://github.com/kfrancis)\n[![Zdenek Havlin](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/wdolek.png \"Zdenek Havlin\")](https://github.com/wdolek)\n[![Sean Killeen](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/SeanKilleen.png \"Sean Killeen\")](https://github.com/SeanKilleen)\n[![Toni Wenzel](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/twenzel.png \"Toni Wenzel\")](https://github.com/twenzel)\n[![Giorgi Dalakishvili](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/Giorgi.png \"Giorgi Dalakishvili\")](https://github.com/Giorgi)\n[![Kelly White](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/mckhendry.png \"Kelly White\")](https://github.com/mckhendry)\n[![Allan Ritchie](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/aritchie.png \"Allan Ritchie\")](https://github.com/aritchie)\n[![Mike James](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/MikeCodesDotNET.png \"Mike James\")](https://github.com/MikeCodesDotNET)\n[![Uno Platform](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/unoplatform.png \"Uno Platform\")](https://github.com/unoplatform)\n[![Dan Siegel](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/dansiegel.png \"Dan Siegel\")](https://github.com/dansiegel)\n[![Reuben Swartz](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/rbnswartz.png \"Reuben Swartz\")](https://github.com/rbnswartz)\n[![Jeremy Simmons](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/jeremysimmons.png \"Jeremy Simmons\")](https://github.com/jeremysimmons)\n[![Jacob Foshee](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/jfoshee.png \"Jacob Foshee\")](https://github.com/jfoshee)\n[![](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/Mrxx99.png \"\")](https://github.com/Mrxx99)\n[![Eric Johnson](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/eajhnsn1.png \"Eric Johnson\")](https://github.com/eajhnsn1)\n[![Norman Mackay](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/mackayn.png \"Norman Mackay\")](https://github.com/mackayn)\n[![Certify The Web](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/certifytheweb.png \"Certify The Web\")](https://github.com/certifytheweb)\n[![Taylor Mansfield](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/lavahot.png \"Taylor Mansfield\")](https://github.com/lavahot)\n[![Mårten Rånge](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/mrange.png \"Mårten Rånge\")](https://github.com/mrange)\n[![David Petric](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/davidpetric.png \"David Petric\")](https://github.com/davidpetric)\n[![Rich Lee](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/richlee.png \"Rich Lee\")](https://github.com/richlee)\n[![Danilo das Neves Dantas](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/dannevesdantas.png \"Danilo das Neves Dantas\")](https://github.com/dannevesdantas)\n[![](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/nietras.png \"\")](https://github.com/nietras)\n[![Gary Woodfine](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/garywoodfine.png \"Gary Woodfine\")](https://github.com/garywoodfine)\n[![](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/kristinnstefansson.png \"\")](https://github.com/kristinnstefansson)\n[![](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/DarrenAtConexus.png \"\")](https://github.com/DarrenAtConexus)\n[![Steve Bilogan](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/kazo0.png \"Steve Bilogan\")](https://github.com/kazo0)\n[![Ix Technologies B.V.](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/IxTechnologies.png \"Ix Technologies B.V.\")](https://github.com/IxTechnologies)\n[![New Relic](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/newrelic.png \"New Relic\")](https://github.com/newrelic)\n[![Chris Johnston‮](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/Chris-Johnston.png \"Chris Johnston‮\")](https://github.com/Chris-Johnston)\n[![David JENNI](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/davidjenni.png \"David JENNI\")](https://github.com/davidjenni)\n[![](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/ehonda.png \"\")](https://github.com/ehonda)\n[![Jonathan ](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/Jonathan-Hickey.png \"Jonathan \")](https://github.com/Jonathan-Hickey)\n[![Oleg Kyrylchuk](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/okyrylchuk.png \"Oleg Kyrylchuk\")](https://github.com/okyrylchuk)\n[![Juan Blanco](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/juanfranblanco.png \"Juan Blanco\")](https://github.com/juanfranblanco)\n[![LosManos](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/LosManos.png \"LosManos\")](https://github.com/LosManos)\n[![Mariusz Kogut](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/MariuszKogut.png \"Mariusz Kogut\")](https://github.com/MariuszKogut)\n[![Charley Wu](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/akunzai.png \"Charley Wu\")](https://github.com/akunzai)\n[![](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/meisenring.png \"\")](https://github.com/meisenring)\n[![Thomas Due](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/Tdue21.png \"Thomas Due\")](https://github.com/Tdue21)\n[![Jakob Tikjøb Andersen](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/jakobt.png \"Jakob Tikjøb Andersen\")](https://github.com/jakobt)\n[![Seann Alexander](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/seanalexander.png \"Seann Alexander\")](https://github.com/seanalexander)\n[![Tino Hager](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/tinohager.png \"Tino Hager\")](https://github.com/tinohager)\n[![Badre BSAILA](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/pedrobsaila.png \"Badre BSAILA\")](https://github.com/pedrobsaila)\n[![Mark Seemann](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/ploeh.png \"Mark Seemann\")](https://github.com/ploeh)\n[![Angelo Belchior](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/angelobelchior.png \"Angelo Belchior\")](https://github.com/angelobelchior)\n[![Tony Qu](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/tonyqus.png \"Tony Qu\")](https://github.com/tonyqus)\n[![Daniel May](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/danielrmay.png \"Daniel May\")](https://github.com/danielrmay)\n[![Blauhaus Technology (Pty) Ltd](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/BlauhausTechnology.png \"Blauhaus Technology (Pty) Ltd\")](https://github.com/BlauhausTechnology)\n[![Richard Collette](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/rcollette.png \"Richard Collette\")](https://github.com/rcollette)\n[![Nick Vaughan](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/bngv.png \"Nick Vaughan\")](https://github.com/bngv)\n[![Ken Bonny](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/KenBonny.png \"Ken Bonny\")](https://github.com/KenBonny)\n[![Simon Cropp](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/SimonCropp.png \"Simon Cropp\")](https://github.com/SimonCropp)\n\n\n\u003c!-- sponsors.md --\u003e\n\n[![Sponsor this project](https://raw.githubusercontent.com/devlooped/sponsors/main/sponsor.png \"Sponsor this project\")](https://github.com/sponsors/devlooped)\n\u0026nbsp;\n\n[Learn more about GitHub Sponsors](https://github.com/sponsors)\n\n\u003c!-- https://github.com/devlooped/sponsors/raw/main/footer.md --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevlooped%2Factions-sponsor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevlooped%2Factions-sponsor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevlooped%2Factions-sponsor/lists"}