├── .github ├── ISSUE_TEMPLATE │ ├── JSON TEMPLATE │ └── large-dataset-datacap-application.yaml ├── scripts │ └── close_inactive │ │ ├── close_stale_issues.mjs │ │ ├── notify_stale_issues.mjs │ │ └── utils.mjs └── workflows │ └── close-inactive.yml └── README.md /.github/ISSUE_TEMPLATE/JSON TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/filecoin-plus-large-datasets/HEAD/.github/ISSUE_TEMPLATE/JSON TEMPLATE -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/large-dataset-datacap-application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/filecoin-plus-large-datasets/HEAD/.github/ISSUE_TEMPLATE/large-dataset-datacap-application.yaml -------------------------------------------------------------------------------- /.github/scripts/close_inactive/close_stale_issues.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/filecoin-plus-large-datasets/HEAD/.github/scripts/close_inactive/close_stale_issues.mjs -------------------------------------------------------------------------------- /.github/scripts/close_inactive/notify_stale_issues.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/filecoin-plus-large-datasets/HEAD/.github/scripts/close_inactive/notify_stale_issues.mjs -------------------------------------------------------------------------------- /.github/scripts/close_inactive/utils.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/filecoin-plus-large-datasets/HEAD/.github/scripts/close_inactive/utils.mjs -------------------------------------------------------------------------------- /.github/workflows/close-inactive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/filecoin-plus-large-datasets/HEAD/.github/workflows/close-inactive.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/filecoin-plus-large-datasets/HEAD/README.md --------------------------------------------------------------------------------