{"id":19196875,"url":"https://github.com/kurrent-io/Automations","last_synced_at":"2025-04-20T10:32:15.202Z","repository":{"id":40354802,"uuid":"249711515","full_name":"EventStore/Automations","owner":"EventStore","description":"Gathers GitHub actions used across the organization.","archived":false,"fork":false,"pushed_at":"2024-11-07T13:57:47.000Z","size":4723,"stargazers_count":5,"open_issues_count":3,"forks_count":5,"subscribers_count":24,"default_branch":"master","last_synced_at":"2024-11-07T14:33:42.623Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/EventStore.png","metadata":{"files":{"readme":"README.md","changelog":"changelog-update/action.yml","contributing":null,"funding":null,"license":null,"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":"2020-03-24T13:11:17.000Z","updated_at":"2024-05-03T12:17:20.000Z","dependencies_parsed_at":"2024-11-07T14:40:37.013Z","dependency_job_id":null,"html_url":"https://github.com/EventStore/Automations","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EventStore%2FAutomations","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EventStore%2FAutomations/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EventStore%2FAutomations/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EventStore%2FAutomations/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EventStore","download_url":"https://codeload.github.com/EventStore/Automations/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223823132,"owners_count":17208947,"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":[],"created_at":"2024-11-09T12:14:42.923Z","updated_at":"2025-04-20T10:32:06.804Z","avatar_url":"https://github.com/EventStore.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Automations\nGathers GitHub actions used across the organization.\n\n# Reusable Workflows\n\n## Triage project automation\n\nNewly opened or reopened issues are given the \"To Triage\" status on the Triage project board.\nItems that are given a milestone are removed from the Triage project, and should be added to the appropriate work project in a separate workflow.\n\n### Inputs\n\n| Input                   | Description |\n| ------------------ | ------------- |\n| `resource-node-id` | The global node ID of the issue or PR (`github.event.issue.node_id`) |\n| `event-action` | The action that triggered the workflow (`github.event.action`) |\n| `labels` | A comma-separated list of the labels on the issue (`join(github.event.issue.labels.*.name, ', ')`) |\n\n| Secrets                | Description |\n| ------------------ | ------------- |\n| `project-number`       | The Project Number from the project's url |\n| `token`                | Github Access Token with `org:write` permission |\n\n### Example calling workflow:\n\n```yaml\nname: Triage project automations\n\non:\n  issues:\n    types:\n      - opened\n      - reopened\n      - milestoned\n      - labeled\njobs:\n  call-workflow:\n    uses: EventStore/Automations/.github/workflows/triage-project-automation.yml@master\n    with:\n      resource-node-id: ${{ github.event.issue.node_id }}\n      event-action: ${{ github.event.action }}\n      labels: ${{ join(github.event.issue.labels.*.name, ', ') }}\n    secrets:\n      project-number: 1\n      token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}\n```\n\n## Development project automation\n\nIssues that have been given a milestone are added to the Development project board, and should be removed from the Triage board in a separate workflow.\nThe issues are added without a status, so if they are already present on the Development board then they will remain in their current status. Otherwise they will be given the board's default status.\n\nPull requests that are opened or reopened are added to the project board. They are added to \"In Progress\" if they are still in draft, otherwise they are added to \"Review/QA\".\nIf the pull request is converted to draft or set to ready to review, then the status will be updated accordingly.\n\n### Inputs\n\n| Input                   | Description |\n| ------------------ | ------------- |\n| `resource-node-id` | The global node ID of the issue or PR (`github.event.issue.node_id`) |\n| `event-action` | The action that triggered the workflow (`github.event.action`) |\n| `event-name` | The name of the event that triggered the workflow (`github.event_name`) |\n\n| Secrets                | Description |\n| ------------------ | ------------- |\n| `project-number`       | The Project Number from the project's url |\n| `token`                | Github Access Token with `org:write` permission |\n\n### Example calling workflow:\n\n```yaml\nname: Development project automations for pull requests\n\non:\n  pull_request:\n    types:\n      - opened\n      - reopened\n      - converted_to_draft\n      - ready_for_review\n\njobs:\n  call-workflow:\n    uses: EventStore/Automations/.github/workflows/development-project-automation.yml@master\n    with:\n      resource-node-id: ${{ github.event.pull_request.node_id }}\n      event-action: ${{ github.event.action }}\n      event-name: ${{ github.event_name }}\n    secrets:\n      project-number: 2\n      token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}\n```\n\n```yaml\nname: Development project automations for issues\n\non:\n  issues:\n    types:\n      - milestoned\n\njobs:\n  call-workflow:\n    uses: EventStore/Automations/.github/workflows/development-project-automation.yml@master\n    with:\n      resource-node-id: ${{ github.event.issue.node_id }}\n      event-action: ${{ github.event.action }}\n      event-name: ${{ github.event_name }}\n    secrets:\n      project-number: 2\n      token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkurrent-io%2FAutomations","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkurrent-io%2FAutomations","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkurrent-io%2FAutomations/lists"}