You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This action will download a given users certificates and badges from Credly and stores them within the current repository as (a) JSON file and (b) badges as image raw image file.
- uses: michaelcontento/credly-import-action@v1with:
# The user of whom we want to grab the infosname: michael-contento
By default this action will store the following files:
JSON file containting informations about all available certifications
CredlyBadges.json
A folder full of images
CredlyBadges/*
Custom paths
If you want to change the path where the JSON file and/or the images are stored, use datafile and/or imagedir - like:
- uses: michaelcontento/credly-import-action@v1with:
name: michael-contentodatafile: data/CustomFile.json# Final path: ./data/CustomFile.jsonimagedir: ima/ges# Final path: ./ima/ges/*
Skipping image downloading
If you don't want to store the badge images locally, just the skip_image_downloading option like so:
- uses: michaelcontento/credly-import-action@v1with:
name: michael-contentoskip_image_downloading: 1# Only the ./CredlyBadges.json file will be created