/
githubmirror
/
react-native
Обзор
Документация
Войти
/
githubmirror
/
react-native
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/generate-changelog.yml
29 строк
922 B
Salman Muin Kayser Chishti
chore(ci): update GitHub Actions to latest versions with Node.js 24 support (#54885)
15 дек 2025, 15:20
15 дек 2025, 15:20
b9ac408
Код
Авторство
О чём код?
name: Generate Changelog on: workflow_call: jobs: generate-changelog: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v6 with: token: ${{ secrets.REACT_NATIVE_BOT_GITHUB_TOKEN }} fetch-depth: 0 fetch-tags: true - name: Install dependencies uses: ./.github/actions/yarn-install - name: Configure Git shell: bash run: | git config --local user.email "bot@reactnative.dev" git config --local user.name "React Native Bot" - name: Generate Changelog uses: actions/github-script@v8 with: script: | const {generateChangelog} = require('./.github/workflow-scripts/generateChangelog'); const version = '${{ github.ref_name }}'; await generateChangelog(version, '${{secrets.REACT_NATIVE_BOT_GITHUB_TOKEN}}');