/
githubmirror
/
novu
Обзор
Документация
Войти
/
githubmirror
/
novu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
next
.github/workflows/jarvis.yml
26 строк
813 B
Himanshu Garg
ci(root): AWS OIDC Auth flow in Github Actions and other security fixes NV-7659 (#10823)
14 май 2026, 12:06
Не верифицирован
14 май 2026, 12:06
1be5292
Код
Авторство
О чём код?
name: Add comment on: issues: types: - labeled jobs: add-comment: if: github.event.label.name == '@novu/api-service' runs-on: ubuntu-latest permissions: issues: write steps: - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 - id: get-comment-body run: | ls -la body="$(cat apps/api/jarvis-api-intro.md)" body="${body//'%'/'%25'}" body="${body//$'\n'/'%0A'}" body="${body//$'\r'/'%0D'}" echo "body=$body" >> $GITHUB_OUTPUT - name: Add comment uses: peter-evans/create-or-update-comment@67dcc547d311b736a8e6c5c236542148a47adc3d # v2 with: issue-number: ${{ github.event.issue.number }} body: ${{ steps.get-comment-body.outputs.body }}