/
githubmirror
/
mbed-os
Обзор
Документация
Войти
/
githubmirror
/
mbed-os
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/main.yml
29 строк
817 B
Martin Kojtal
github action: add git safe directory
20 апр 2022, 13:18
20 апр 2022, 13:18
ad15f0a
Код
Авторство
О чём код?
on: issues: types: [ opened, reopened ] jobs: build: runs-on: ubuntu-latest steps: - name: Checkout repo uses: actions/checkout@v3 - name: Install Python environment uses: actions/setup-python@v2 with: python-version: 3.8 - name: Checkout mbed-os-scripts repo (This repo is currently private) uses: actions/checkout@v3 with: repository: ARMmbed/mbed-os-ci-scripts token: ${{ secrets.ISSUE_TRIAGING_PERMS }} path: scripts ref: master - name: Run the script run: | python -m pip install pygithub python ./scripts/issue_triaging/__init__.py -i ${{github.event.issue.number}} -r ${{ github.event.repository.name }} -t ${{ secrets.ISSUE_TRIAGING_PERMS }}