{"id":13530539,"url":"https://github.com/WyriHaximus/github-action-create-milestone","last_synced_at":"2025-04-01T18:31:57.715Z","repository":{"id":48403311,"uuid":"216266779","full_name":"WyriHaximus/github-action-create-milestone","owner":"WyriHaximus","description":"Create a new milestone","archived":false,"fork":false,"pushed_at":"2023-12-20T17:15:06.000Z","size":57,"stargazers_count":16,"open_issues_count":2,"forks_count":6,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-05-02T05:37:38.541Z","etag":null,"topics":["github","github-actions","hacktoberfest","milestone"],"latest_commit_sha":null,"homepage":null,"language":"Shell","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/WyriHaximus.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":"WyriHaximus"}},"created_at":"2019-10-19T20:31:50.000Z","updated_at":"2023-08-14T09:49:52.000Z","dependencies_parsed_at":"2023-12-18T15:01:24.922Z","dependency_job_id":"a7526b64-2935-4143-9a79-4afbc113c782","html_url":"https://github.com/WyriHaximus/github-action-create-milestone","commit_stats":{"total_commits":14,"total_committers":2,"mean_commits":7.0,"dds":0.0714285714285714,"last_synced_commit":"6f8e11bb23890a15c6cc520abf7a36510dfd0f94"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WyriHaximus%2Fgithub-action-create-milestone","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WyriHaximus%2Fgithub-action-create-milestone/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WyriHaximus%2Fgithub-action-create-milestone/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WyriHaximus%2Fgithub-action-create-milestone/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WyriHaximus","download_url":"https://codeload.github.com/WyriHaximus/github-action-create-milestone/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246691640,"owners_count":20818544,"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":["github","github-actions","hacktoberfest","milestone"],"created_at":"2024-08-01T07:00:51.510Z","updated_at":"2025-04-01T18:31:57.493Z","avatar_url":"https://github.com/WyriHaximus.png","language":"Shell","funding_links":["https://github.com/sponsors/WyriHaximus"],"categories":["Community Resources"],"sub_categories":["Utility"],"readme":"# Milestone Create Github Action\n\nGithub Action that creates a new open milestone given the title and description.\n\n![Example output showing this action in action](images/output.png)\n\n## Options\n\nThis action supports the following options.\n\n### title\n\nThe title (version) for the milestone.\n\n* *Required*: `Yes`\n* *Type*: `string`\n* *Example*: `v1.0.0` or `Magnetic North`\n\n### description\n\nAn optional description for the milestone.\n\n* *Required*: `No`\n* *Type*: `string`\n\n## Output\n\nThis action has only one output and that's the `number` output. This is the number you see in the HTML URL of the \nmilestone and can be used to refer to in other actions when creating PR's as shown in the example below.\n\n## Example\n\nThe following example works together with the [`WyriHaximus/github-action-get-previous-tag`](https://github.com/marketplace/actions/get-latest-tag) \nand [`WyriHaximus/github-action-next-semvers`](https://github.com/marketplace/actions/next-semvers) actions. \nWhere it creates a new milestone based on information passed down from the previous two actions. (This snippet has \nbeen taken from the automatic code generation of [`wyrihaximus/fake-php-version`](https://github.com/wyrihaximus/php-fake-php-version/).)\n\n```yaml\nname: Generate\njobs:\n  generate:\n    steps:\n      - uses: actions/checkout@v1\n      - name: 'Get Previous tag'\n        id: previoustag\n        uses: \"WyriHaximus/github-action-get-previous-tag@v1\"\n        env:\n          GITHUB_TOKEN: \"${{ secrets.GITHUB_TOKEN }}\"\n      - name: 'Get next minor version'\n        id: semvers\n        uses: \"WyriHaximus/github-action-next-semvers@v1\"\n        with:\n          version: ${{ steps.previoustag.outputs.tag }}\n      - name: 'Create new milestone'\n        id: createmilestone\n        uses: \"WyriHaximus/github-action-create-milestone@v1\"\n        with:\n          title: ${{ steps.semvers.outputs.patch }}\n        env:\n          GITHUB_TOKEN: \"${{ secrets.GITHUB_TOKEN }}\"\n```\n\n## License ##\n\nCopyright 2019 [Cees-Jan Kiewiet](http://wyrihaximus.net/)\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FWyriHaximus%2Fgithub-action-create-milestone","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FWyriHaximus%2Fgithub-action-create-milestone","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FWyriHaximus%2Fgithub-action-create-milestone/lists"}