2024-03-28 15:07:47 +02:00
|
|
|
name: Обновить yml процесса тестирования
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
Make-CLI-Tests:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
2024-03-28 15:12:34 +02:00
|
|
|
permissions:
|
|
|
|
actions: write
|
|
|
|
contents: write
|
2024-03-28 15:07:47 +02:00
|
|
|
|
|
|
|
steps:
|
2024-03-28 15:20:18 +02:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
token: ${{secrets.TOKEN}}
|
2024-03-28 15:07:47 +02:00
|
|
|
- uses: otymko/setup-onescript@v1.4
|
|
|
|
with:
|
|
|
|
version: 1.9.0
|
|
|
|
|
|
|
|
- name: Выполнить скрипт создания yml-файла
|
|
|
|
run: oscript ./.github/workflows/os/cli_testmaker.os > ./.github/workflows/cli_test.yml
|
|
|
|
|
|
|
|
- uses: stefanzweifel/git-auto-commit-action@v5
|
|
|
|
with:
|
|
|
|
commit_user_name: Vitaly the Alpaca (bot)
|
|
|
|
commit_user_email: vitaly.the.alpaca@gmail.com
|
|
|
|
commit_author: Vitaly the Alpaca <vitaly.the.alpaca@gmail.com>
|
2024-03-28 15:23:46 +02:00
|
|
|
commit_message: Обновление yml файла - cli_test.yml (workflow)
|