{"id":15756832,"url":"https://github.com/garnertb/weekly-issue-action","last_synced_at":"2025-03-31T08:25:33.549Z","repository":{"id":49333985,"uuid":"517168442","full_name":"garnertb/weekly-issue-action","owner":"garnertb","description":"Action that creates consistent Issues on different dates.  ","archived":false,"fork":false,"pushed_at":"2022-08-10T13:35:03.000Z","size":32,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-03-14T22:09:52.884Z","etag":null,"topics":["actions","project-management"],"latest_commit_sha":null,"homepage":"","language":"Handlebars","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/garnertb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-07-23T21:31:10.000Z","updated_at":"2023-03-05T05:36:52.000Z","dependencies_parsed_at":"2023-01-04T12:30:15.023Z","dependency_job_id":null,"html_url":"https://github.com/garnertb/weekly-issue-action","commit_stats":{"total_commits":27,"total_committers":2,"mean_commits":13.5,"dds":0.03703703703703709,"last_synced_commit":"5a115f2810879d9a7000bfba2517df038e648660"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/garnertb%2Fweekly-issue-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/garnertb%2Fweekly-issue-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/garnertb%2Fweekly-issue-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/garnertb%2Fweekly-issue-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/garnertb","download_url":"https://codeload.github.com/garnertb/weekly-issue-action/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246438228,"owners_count":20777385,"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","project-management"],"created_at":"2024-10-04T09:02:28.255Z","updated_at":"2025-03-31T08:25:33.529Z","avatar_url":"https://github.com/garnertb.png","language":"Handlebars","funding_links":[],"categories":[],"sub_categories":[],"readme":"# weekly-issue-action\n\nThis action can be used to create consistent GitHub issues on a schedule. Great for standardizing project management,\nscrum ceremonies, and other recurring tasks.\n\n## Usage\n\n```yaml\n- uses: garnertb/weekly-issue-action@v1\n  with: \n  \n    # Assignees for the issue \n    # Required: false\n    - assignees: '' \n    \n    # Project column name to add issue to, e.g. To Do.\n    # Required if \"project\" is set. \n    # Required: false\n    # Default: \"Weekly sync issue\" \n    - body: ''\n    \n    # Whether to close the previous weekly issue when creating new one \n    # Required: false\n    - close-previous: ''\n    \n    # Date string used to add the date to the title of the issue \n    # Required: false\n    # Default: \"this friday\" \n    - date-string: ''\n    \n    # The format passed to the date command \n    # Required: false\n    # Default: \"%m/%d/%Y\" \n    - date-string-format: ''\n    \n    # Required: false\n    # Default: \"Weekly issue for week of \" \n    - title: ''\n    \n    # Comma delimited list of existing issue labels to be applied to new issue, e.g. \"bug, ci\". \n    # Required: false\n    # Default: \"weekly-sync\" \n    - labels: ''\n    \n    # Whether to link to the previous weekly issue when creating a new one \n    # Required: \n    # Default: \"true\" \n    - linked-comments: ''\n    \n    # Text of the comment on the previous issue that links to the new issue.\n    # Requires \"linked-comments, labels\". \n    # Required: false\n    # Default: \"Next in series: #{{ newIssueNumber }}\" \n    - linked-comments-previous-issue-text: ''\n    \n    # Text of the comment on the new issue that links to the previous issue.\n    # Requires \"linked-comments, labels\". \n    # Required: false\n    # Default: \"Previous in series: #{{ previousIssueNumber }}\" \n    - linked-comments-new-issue-text: ''\n    \n    # Milestone number (not ID or name) to add issue to, e.g. 2. \n    # Required: false\n    - milestone: ''\n    \n    # Project number (not ID or name) to add issue to, e.g. 2. \n    # Required: false\n    - project: ''\n    \n    # Whether the issue should be pinned. \n    # Required: false\n    # Default: \"true\" \n    - pinned: ''\n\n    # Boolean whether to round robin the provided assignees, e.g. for first responder duties.\n    # Requires \"labels\", \"assignees\".\n    # default: 'false'\n    # Required: false\n    - rotate-assignees: ''\n\n    # GitHub token \n    # Required: false\n    # Default: \"${{ github.token }}\" \n    - token: ''\n    \n    # Project type the \"project\" number corresponds to, e.g. user, organization, or repository project. \n    # Organization and user projects require a GitHub App installation access token, OAuth token, or Personal Access Token.\n    # Read more here: https://docs.github.com/en/github/managing-your-work-on-github/about-project-boards. \n    # Required: false\n    # Default: \"repository\" \n    - project-type: ''\n```\n\n## Permissions\n\nThe GitHub [token][token docs] needs to have `repo` permissions to create new issues.\n\n## Scenerios\n\n### Weekly Issue\n\n#### Create a weekly issue for a Friday meeting\n\n```yaml\n- id: create-issue\n  uses: garnertb/weekly-issue-action@v1\n  with:\n    # \"This friday\" gets passed to the gnu date command and the returned date \n    # is accessible through the step output.\n    date-string: \"this friday\"\n    title: Weekly sync for ${{ steps.date.outputs.date  }}\n    body: |- \n      ## Weekly Sync\n\n      \u003c!-- Items actively working or blocked --\u003e\n      ### In Progress\n\n      ### PRs Needing Review\n      \u003c!-- Outstanding PRS --\u003e\n\n      ### Security\n      \u003c!-- Security-related Issues/PRS --\u003e\n\n      ### Expenses\n      \u003c!-- Image from AWS Cost Explorer --\u003e\n\n      ### Deployments\n    token: ${{ secrets.GITHUB_TOKEN }}\n```\n\nIn this example, the action will create an issue titled \"Weekly sync for for week of [the date of Friday in MM/DD/YYYY]\".  See output 👇. \n\nProduces: \n\u003cimg width=\"1137\" alt=\"Screen Shot 2022-07-27 at 13 48 39\" src=\"https://user-images.githubusercontent.com/1141646/181359527-a600598c-603f-4c27-aa2c-2ddd2ebd2057.png\"\u003e\n\n[token docs]: https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token\n  ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgarnertb%2Fweekly-issue-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgarnertb%2Fweekly-issue-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgarnertb%2Fweekly-issue-action/lists"}