Skip to content

Commit

Permalink
Add iga
Browse files Browse the repository at this point in the history
  • Loading branch information
tmorrell committed Nov 21, 2023
1 parent c5a0f3f commit 9779e8d
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 2 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/iga.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: InvenioRDM GitHub Archiver
env:
INVENIO_SERVER: https://data.caltech.edu

# These variables are IGA options. Please see the docs for info.
draft: false
all_assets: false
all_metadata: false
community: none
parent_record: none
debug: false

# ~~~~~~~~~~ The rest of this file should be left as-is ~~~~~~~~~~
on:
release:
types: [published]
workflow_dispatch:
inputs:
release_tag:
description: "The tag of the release to archive:"
draft:
default: false
description: "Mark the record as a draft:"
all_assets:
default: false
description: "Attach all GitHub assets:"
all_metadata:
default: false
description: "Include additional GitHub metadata:"
community:
description: "Send record to InvenioRDM community:"
parent_record:
description: "ID of parent record (for versioning):"
jobs:
Send_to_InvenioRDM:
runs-on: ubuntu-latest
steps:
- uses: caltechlibrary/iga@main
with:
INVENIO_SERVER: ${{env.INVENIO_SERVER}}
INVENIO_TOKEN: ${{secrets.INVENIO_TOKEN}}
all_assets: ${{github.event.inputs.all_assets || env.all_assets}}
all_metadata: ${{github.event.inputs.all_metadata || env.all_metadata}}
debug: ${{github.event.inputs.debug || 'false'}}
draft: ${{github.event.inputs.draft || env.draft}}
community: ${{github.event.inputs.community || env.community}}
parent_record: ${{github.event.inputs.parent_record || env.parent_record}}
release_tag: ${{github.event.inputs.release_tag || 'latest'}}
4 changes: 2 additions & 2 deletions codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"codeRepository": "https://github.com/caltechlibrary/irdm_harvester",
"issueTracker": "https://github.com/caltechlibrary/irdm_harvester/issues",
"license": "https://data.caltech.edu/license",
"version": "0.0.1",
"version": "0.1.0",
"author": [
{
"@type": "Person",
Expand All @@ -21,7 +21,7 @@
}],
"developmentStatus": "active",
"downloadUrl":
"https://github.com/caltechlibrary/irdm_harvester/archive/0.0.1.zip",
"https://github.com/caltechlibrary/irdm_harvester/archive/0.1.0.zip",
"keywords": [
"metadata",
"CrossRef",
Expand Down

0 comments on commit 9779e8d

Please sign in to comment.