https://github.com/devskiller/talentscore-import-yaml-action
https://github.com/devskiller/talentscore-import-yaml-action
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/devskiller/talentscore-import-yaml-action
- Owner: Devskiller
- Created: 2024-11-20T17:04:55.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-12-13T10:36:11.000Z (over 1 year ago)
- Last Synced: 2025-05-14T20:21:21.679Z (about 1 year ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DevSkiller TalentScore - Import tasks from YAML
This GitHub Action uploads custom MCQ/Essay/CodeGaps tasks to the DevSkiller TalentScore platform. It allows you to easily integrate the import from YAML process into your CI/CD pipeline.
## Inputs
### `api_key`
**Required**: The TalentScore API key. This key is needed to authenticate the upload request.
### `path`
**Required**: Path to a YAML file with tasks. [Description of the file structure](yaml-file-structure.md)
## Example
```yaml
name: Sample YAML import
on:
push:
branches:
- master
jobs:
upload-task:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: Devskiller/talentscore-import-yaml-action@v1.0.0
with:
api_key: ${{ secrets.TALENTSCORE_API_KEY }}
path: ./java-tasks.yml
```