{"id":15673888,"url":"https://github.com/technote-space/create-project-card-action","last_synced_at":"2025-05-06T21:41:39.994Z","repository":{"id":37363721,"uuid":"235107265","full_name":"technote-space/create-project-card-action","owner":"technote-space","description":"GitHub actions to create project card","archived":false,"fork":false,"pushed_at":"2023-05-31T04:16:25.000Z","size":8755,"stargazers_count":15,"open_issues_count":2,"forks_count":5,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-25T20:02:41.834Z","etag":null,"topics":["github-actions","github-projects"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/technote-space.png","metadata":{"files":{"readme":"README.ja.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":".github/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":{"custom":"https://paypal.me/technote0space"}},"created_at":"2020-01-20T13:26:05.000Z","updated_at":"2023-07-27T01:38:36.000Z","dependencies_parsed_at":"2024-06-18T19:44:18.810Z","dependency_job_id":"0d31ddd0-d977-4279-a00c-ee184de54f05","html_url":"https://github.com/technote-space/create-project-card-action","commit_stats":{"total_commits":461,"total_committers":2,"mean_commits":230.5,"dds":0.2603036876355749,"last_synced_commit":"54cc92341dfa94528c4ee4333fb12c3fb0fd4722"},"previous_names":[],"tags_count":161,"template":false,"template_full_name":"technote-space/gh-actions-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/technote-space%2Fcreate-project-card-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/technote-space%2Fcreate-project-card-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/technote-space%2Fcreate-project-card-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/technote-space%2Fcreate-project-card-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/technote-space","download_url":"https://codeload.github.com/technote-space/create-project-card-action/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252741371,"owners_count":21797027,"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-actions","github-projects"],"created_at":"2024-10-03T15:42:45.194Z","updated_at":"2025-05-06T21:41:39.969Z","avatar_url":"https://github.com/technote-space.png","language":"TypeScript","funding_links":["https://paypal.me/technote0space"],"categories":[],"sub_categories":[],"readme":"# Create Project Card Action\n\n[![CI Status](https://github.com/technote-space/create-project-card-action/workflows/CI/badge.svg)](https://github.com/technote-space/create-project-card-action/actions)\n[![codecov](https://codecov.io/gh/technote-space/create-project-card-action/branch/main/graph/badge.svg)](https://codecov.io/gh/technote-space/create-project-card-action)\n[![CodeFactor](https://www.codefactor.io/repository/github/technote-space/create-project-card-action/badge)](https://www.codefactor.io/repository/github/technote-space/create-project-card-action)\n[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/technote-space/create-project-card-action/blob/main/LICENSE)\n\n*Read this in other languages: [English](README.md), [日本語](README.ja.md).*\n\nProject card を作成する `GitHub Actions` です。\n\n## Table of Contents\n\n\u003c!-- START doctoc generated TOC please keep comment here to allow auto update --\u003e\n\u003c!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --\u003e\n\u003cdetails\u003e\n\u003csummary\u003eDetails\u003c/summary\u003e\n\n- [使用方法](#%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95)\n- [オプション](#%E3%82%AA%E3%83%97%E3%82%B7%E3%83%A7%E3%83%B3)\n- [Action イベント詳細](#action-%E3%82%A4%E3%83%99%E3%83%B3%E3%83%88%E8%A9%B3%E7%B4%B0)\n  - [対象イベント](#%E5%AF%BE%E8%B1%A1%E3%82%A4%E3%83%99%E3%83%B3%E3%83%88)\n- [Author](#author)\n\n\u003c/details\u003e\n\u003c!-- END doctoc generated TOC please keep comment here to allow auto update --\u003e\n\n## 使用方法\ne.g. issue_opened.yml\n```yaml\non:\n  issues:\n    types: [opened]\nname: Issue opened\njobs:\n  assign:\n    name: Assign issues to project\n    runs-on: ubuntu-latest\n    steps:\n      - name: Assign issues to project\n        uses: technote-space/create-project-card-action@v1\n        with:\n          PROJECT: Backlog\n          COLUMN: To do\n```\n\ne.g. pr-opened.yml\n```yaml\non:\n  pull_request:\n    types: [opened]\nname: Pull Request opened\njobs:\n  assignToProject:\n    name: Assign PullRequest to Project\n    runs-on: ubuntu-latest\n    steps:\n      - name: Assign PullRequest to Project\n        uses: technote-space/create-project-card-action@v1\n        with:\n          PROJECT: Backlog\n          COLUMN: To do\n```\n\n## オプション\n| name | description | default | required | e.g. |\n|:---:|:---|:---:|:---:|:---:|\n|PROJECT|プロジェクト名| |true|`Backlog`|\n|COLUMN|カラム名| |true|`To do`|\n|CHECK_ORG_PROJECT|Organizationプロジェクトをチェックするかどうか\u003cbr\u003eこのオプションを使用する場合、`admin` へのアクセス許可が必要です。\u003cbr\u003e`secrets.GITHUB_TOKEN` の代わりに Personal access token を使用してください。|false| |`true`|\n|CHECK_USER_PROJECT|Userプロジェクトをチェックするかどうか\u003cbr\u003eこのオプションを使用する場合、`repo` へのアクセス許可が必要です。\u003cbr\u003e`secrets.GITHUB_TOKEN` の代わりに Personal access token を使用してください。|false| |`true`|\n|GITHUB_TOKEN|アクセストークン|`${{github.token}}`|true|`${{secrets.ACCESS_TOKEN}}`|\n\n## Action イベント詳細\n### 対象イベント\n| eventName | action |\n|:---:|:---:|\n|pull_request, pull_request_target|opened, reopened|\n|issues|opened, reopened|\n\n## Author\n[GitHub (Technote)](https://github.com/technote-space)  \n[Blog](https://technote.space)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechnote-space%2Fcreate-project-card-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftechnote-space%2Fcreate-project-card-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechnote-space%2Fcreate-project-card-action/lists"}