create_multilingual_glossary_from_csv() Takes source_lang and target_lang parameters which defeats the point of the function. #75
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Add issues to the user issues board | |
| on: | |
| issues: | |
| types: | |
| - opened | |
| jobs: | |
| add-to-project: | |
| name: Add issue to project | |
| runs-on: ubuntu-latest | |
| permissions: {} | |
| steps: | |
| - uses: actions/create-github-app-token@v3.2.0 | |
| id: app-token | |
| with: | |
| client-id: ${{ secrets.PROJECT_BOT_CLIENT_ID }} | |
| private-key: ${{ secrets.PROJECT_BOT_PRIVATE_KEY }} | |
| - uses: actions/add-to-project@v2.0.0 | |
| with: | |
| project-url: https://github.com/orgs/DeepL/projects/1 | |
| github-token: ${{ steps.app-token.outputs.token }} |