{"id":15705600,"url":"https://github.com/azu/my-board-for-github","last_synced_at":"2025-05-12T18:36:07.766Z","repository":{"id":66143510,"uuid":"289645230","full_name":"azu/my-board-for-github","owner":"azu","description":"Project Board to handle across all GitHub repositories!","archived":false,"fork":false,"pushed_at":"2022-08-23T13:38:12.000Z","size":1361,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-26T14:08:25.582Z","etag":null,"topics":["board","github","project"],"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/azu.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"azu"}},"created_at":"2020-08-23T08:23:53.000Z","updated_at":"2022-08-23T13:38:16.000Z","dependencies_parsed_at":"2023-02-21T16:45:15.228Z","dependency_job_id":null,"html_url":"https://github.com/azu/my-board-for-github","commit_stats":{"total_commits":50,"total_committers":1,"mean_commits":50.0,"dds":0.0,"last_synced_commit":"7b810dc0558fd6dcba2b63e5508baf7556f3606c"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azu%2Fmy-board-for-github","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azu%2Fmy-board-for-github/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azu%2Fmy-board-for-github/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azu%2Fmy-board-for-github/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/azu","download_url":"https://codeload.github.com/azu/my-board-for-github/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243171907,"owners_count":20247878,"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":["board","github","project"],"created_at":"2024-10-03T20:17:17.668Z","updated_at":"2025-03-12T06:31:33.991Z","avatar_url":"https://github.com/azu.png","language":"TypeScript","readme":"# My-Board-For-Github(MYFG)\n\nA Project Board to handle across all GitHub repositories!\n\n- GitHub's [user-owned project board](https://docs.github.com/en/github/managing-your-work-on-github/creating-a-project-board#creating-a-user-owned-project-board) limit repositories\n- GitHub Repository/Organization Project board does not treat outside of the repository and organization.\n- My-Board-For-Github(MYFG) can treat all repositories if you can access\n\nMy-Board-For-Github(MYFG) can also treat non-own project's issue and pull request.\nMYFG just require GitHub's issue/pr url for handling in the project board.\n\n![My-Board-For-Github](docs/img/screenshot.png)\n\n## Usage\n\n1. Create your My-Board-For-Github(MYFG) data repository\n    - e.g. `example-owner/my-board-data`\n2. Create `project.json` into data repository\n    - e.g. [project.json](https://github.com/azu/my-board-for-github-example/blob/master/project.json)\n    - For more details about the schema, see [src/data/DataScheme.ts](src/data/DataScheme.ts)\n    - `inbox` and `done` id is special meaning\n2. [Create Personal AccessToken for your GitHub Account](https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token)\n    - require: `repo` scope\n3. Access My-Board-For-Github(MYFG)\n\n- `https://my-board-for-github.netlify.app/?owner=\u003cowner\u003e\u0026repo=\u003crepo\u003e\u0026branch=\u003cbranch\u003e\u0026token=\u003ctoken\u003e`\n\nParameters:\n\n- `owner`: owner name of data repository\n    - `example-owner`\n- `repo`: repo name of data repository\n    - `my-board-data`\n- `branch`: branch name of data repository\n    - `master\"`\n- `token`: GitHub Access Token for MYFG\n    - `xxxx`\n    - :memo: Store `token` into localStorage and remove `token` parameter from URL after token is passed. \n    \n### `project.json` format\n\nData repository require a `project.json` file under the root directory.\n`project.json` schema is defined in [src/data/DataScheme.ts](src/data/DataScheme.ts).\n\n```json\n[\n  {\n    \"id\": \"activity\",\n    \"title\": \"Activity\",\n    \"type\": \"query\",\n    \"query\": \"involves:azu\"\n  },\n  {\n    \"id\": \"inbox\",\n    \"title\": \"Inbox\",\n    \"items\": [\n      {\n        \"url\": \"https://github.com/facebook/react/issues/19670\",\n        \"type\": \"issue\"\n      },\n      {\n        \"url\": \"https://github.com/microsoft/TypeScript/issues/40124\",\n        \"type\": \"issue\"\n      }\n    ]\n  },\n  {\n    \"id\": \"progressing\",\n    \"title\": \"Progressing\",\n    \"items\": [\n    ]\n  },\n  {\n    \"id\": \"done\",\n    \"title\": \"Done\",\n    \"items\": [\n      {\n        \"url\": \"https://github.com/github/roadmap/issues/65\",\n        \"type\": \"issue\"\n      },\n      {\n        \"url\": \"https://github.com/github/opensource.guide/pull/1704\",\n        \"type\": \"pull_request\"\n      }\n    ]\n  }\n]\n```\n\n### Examples\n\nSadly, the example require your GitHub Access Token, because GraphQL API always require Access Token. \n\n- Example: \u003chttps://my-board-for-github.netlify.app/?owner=azu\u0026repo=my-board-for-github-example\u0026branch=master\u0026token=xxx\u0026dryrun=true\u003e\n- Repository: [azu/my-board-for-github-example](https://github.com/azu/my-board-for-github-example)\n\n### Add item to your project\n\nCurrently, My-Board-For-Github(MYFG) does not provide adding method yet.\n\nInstead of it, Use [Greasemonkey script](userscript/github) for MYFG.\n\nIt allows you to add issue and pull request to your project from GitHub directly.\n\n![greasemonkey](docs/img/greasemonkey.png)\n\nFor more details, see [userscript/github](userscript/github).\n\n## Contributing\n\n1. Fork it!\n2. Create your feature branch: `git checkout -b my-new-feature`\n3. Commit your changes: `git commit -am 'Add some feature'`\n4. Push to the branch: `git push origin my-new-feature`\n5. Submit a pull request :D\n\n## License\n\nMIT\n\n## OSS Sponsors\n          \n\u003ca href=\"https://www.netlify.com\"\u003e\n\u003cimg src=\"https://www.netlify.com/img/global/badges/netlify-color-bg.svg\" alt=\"Deploys by Netlify\" /\u003e\n\u003c/a\u003e\n            \n\n---\n\n## Development\n\nThis project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).\n\n## Available Scripts\n\nIn the project directory, you can run:\n\n### `yarn start`\n\nRuns the app in the development mode.\u003cbr /\u003e\nOpen [http://localhost:3000](http://localhost:3000) to view it in the browser.\n\nThe page will reload if you make edits.\u003cbr /\u003e\nYou will also see any lint errors in the console.\n\n### `yarn test`\n\nLaunches the test runner in the interactive watch mode.\u003cbr /\u003e\nSee the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.\n\n### `yarn build`\n\nBuilds the app for production to the `build` folder.\u003cbr /\u003e\nIt correctly bundles React in production mode and optimizes the build for the best performance.\n\nThe build is minified and the filenames include the hashes.\u003cbr /\u003e\nYour app is ready to be deployed!\n\nSee the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.\n\n### `yarn eject`\n\n**Note: this is a one-way operation. Once you `eject`, you can’t go back!**\n\nIf you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.\n\nInstead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.\n\nYou don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.\n\n## Learn More\n\nYou can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).\n\nTo learn React, check out the [React documentation](https://reactjs.org/).\n","funding_links":["https://github.com/sponsors/azu"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazu%2Fmy-board-for-github","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fazu%2Fmy-board-for-github","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazu%2Fmy-board-for-github/lists"}