{"id":19292175,"url":"https://github.com/nasa-pds/ldd-gen-action","last_synced_at":"2026-03-19T09:07:54.930Z","repository":{"id":38983930,"uuid":"287459055","full_name":"NASA-PDS/ldd-gen-action","owner":"NASA-PDS","description":"Do a \"roundup\" of a local data dictionary, a/k/a PDS-style continuous integration for local data dictionary","archived":false,"fork":false,"pushed_at":"2025-04-09T15:44:24.000Z","size":77,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-09T16:48:24.569Z","etag":null,"topics":["pds"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/NASA-PDS.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","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}},"created_at":"2020-08-14T06:18:33.000Z","updated_at":"2025-04-09T15:44:28.000Z","dependencies_parsed_at":"2024-03-22T19:29:12.744Z","dependency_job_id":"c294db19-8dbf-48e1-b458-07e346e4f31d","html_url":"https://github.com/NASA-PDS/ldd-gen-action","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/NASA-PDS/ldd-gen-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NASA-PDS%2Fldd-gen-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NASA-PDS%2Fldd-gen-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NASA-PDS%2Fldd-gen-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NASA-PDS%2Fldd-gen-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NASA-PDS","download_url":"https://codeload.github.com/NASA-PDS/ldd-gen-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NASA-PDS%2Fldd-gen-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29976289,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T16:35:47.903Z","status":"ssl_error","status_checked_at":"2026-03-01T16:35:44.899Z","response_time":124,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["pds"],"created_at":"2024-11-09T22:29:34.239Z","updated_at":"2026-03-01T17:37:09.570Z","avatar_url":"https://github.com/NASA-PDS.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🤠 PDS Engineering Actions: PDS4 Sub-Model Roundup\n\nThis is an [action for GitHub](https://github.com/features/actions) that generates a PDS4 Local\nData Dictionary from an input IngestLDD, and validates the output against regression test suite (if it exists).\n\nSee the [PDS Sub-Models Org](https://pds-data-dictionaries.github.io/) for more details.\n\n## ℹ️ Using this Action\n\nTo use this action in your own workflow, just provide it `with` the following parameters:\n\n- `datapath` - Absolute path to where the PDS4 IngestLDD should be deployed (required: true)\n- `pds4_im_version` - PDS4 Information Model Version. Defaults to the latest version. Use the semantic version, e.g. 1.14.0.0 (default: 'latest')\n- `schemas` - Path(s) to schemas to use for validation. By default, validate will use the schemas specified in the PDS4 labels.\n- `schematrons` - Path(s) to schematrons to use for validation. By default, validate will use the schemas specified in the PDS4 labels.\n- `required` - false\n- `github_token` - Github secret token\n\n\n\n## 💁‍♀️ Demonstration\n\nThe following is a brief example how a workflow that shows how this action can be used:\n\n```yaml\nname: Continuous Integration and Deployment\n\non:\n   push:\n     branches:\n       - '*'\n     paths:\n       - 'src/*.xml'\n       - '.github/workflows/*.yml'\n\nenv:\n  IM_VERSION: '1.14.0.0'\n  IM_VERSION_SHORT: '1E00'\n  PDS_SCHEMA_URL: 'https://pds.nasa.gov/pds4/pds/v1/'\n  REGRESSION_TEST_DIR: ${{ format('{0}/{1}/', github.workspace, 'test') }}\n  # TODO - Have to hard-code this for now since Actions don't yet allow the use of env here.\n  DEPLOY_DIR: ${{ format('{0}/{1}/{2}/{3}', github.workspace, 'build/development', github.sha, '1.14.0.0') }}\n  # DEPLOY_DIR: ${{ format('{0}/{1}/', 'build/development', '8aab5f03e121d6be648377efc943edb0e71d49d4') }}\n\njobs:\n  build:\n    # TODO - Have to hard-code this for now since Actions don't yet allow the use of env here.\n    name: 'LDD Build - v1.14.0.0'\n    runs-on: ubuntu-latest\n\n    steps:\n      - uses: actions/checkout@v2\n\n      - name: Generate LDDs and Validate\n        uses: NASA-PDS/gh-action-pds4-ldd@master\n        with:\n          datapath: ${{ env.DEPLOY_DIR }}\n          pds4_im_version: ${{ env.IM_VERSION }}\n          pds4_im_short_version: ${{ env.IM_SHORT_VERSION }}\n          schemas: ${{ format('{0}/{1}', env.DEPLOY_DIR, '*.xsd') }}\n          schematrons: ${{ format('{0}/{1}', env.DEPLOY_DIR, '*.sch') }}\n          pds_schema_url: ${{ env.PDS_SCHEMA_URL }}\n          test_dir: ${{ env.REGRESSION_TEST_DIR }}\n          github_token: ${{ secrets.GITHUB_TOKEN }}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnasa-pds%2Fldd-gen-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnasa-pds%2Fldd-gen-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnasa-pds%2Fldd-gen-action/lists"}