/
githubmirror
/
react-native
Обзор
Документация
Войти
/
githubmirror
/
react-native
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/api-changes.yml
28 строк
805 B
Rob Hogan
Update GH Actions references from facebook/react-native to react/react-native (#57167)
11 июн 2026, 10:25
11 июн 2026, 10:25
861d8e0
Код
Авторство
О чём код?
name: Analyze API Changes on: pull_request_target: types: [opened, edited, reopened, synchronize] permissions: pull-requests: write jobs: api_changes: runs-on: ubuntu-latest if: github.repository == 'react/react-native' steps: - name: Check out main branch uses: actions/checkout@v6 - name: Setup Node.js uses: ./.github/actions/setup-node - name: Run yarn install uses: ./.github/actions/yarn-install - name: Run diff-js-api-changes id: diff-js-api-changes uses: ./.github/actions/diff-js-api-changes - name: Post PR comment uses: ./.github/actions/post-pr-comment with: marker: '<!-- api-changes -->' sections: '[${{ toJSON(steps.diff-js-api-changes.outputs.message) }}]'