/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/create-release-proposal.yml
81 строка
3 KB
dependabot[bot]
meta: bump actions/checkout from 6.0.2 to 7.0.0
03 июл 2026, 21:54
Не верифицирован
03 июл 2026, 21:54
0b7a308
Код
Авторство
О чём код?
# This action requires the following secrets to be set on the repository: # GH_USER_TOKEN: GitHub user token, to be used by ncu and to push changes name: Create Release Proposal on: workflow_dispatch: inputs: release-line: required: true type: number description: 'The release line (without dots or prefix). e.g: 22' release-date: required: true type: string description: The release date in YYYY-MM-DD format concurrency: ${{ github.workflow }} env: NODE_VERSION: lts/* permissions: contents: write pull-requests: write jobs: releasePrepare: env: STAGING_BRANCH: v${{ inputs.release-line }}.x-staging RELEASE_BRANCH: v${{ inputs.release-line }}.x RELEASE_DATE: ${{ inputs.release-date }} RELEASE_LINE: ${{ inputs.release-line }} runs-on: ubuntu-slim steps: - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 with: ref: ${{ env.STAGING_BRANCH }} persist-credentials: false # Install dependencies - name: Install Node.js uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 with: node-version: ${{ env.NODE_VERSION }} - name: Install @node-core/utils run: npm install -g @node-core/utils - name: Configure @node-core/utils run: | ncu-config set branch "${RELEASE_BRANCH}" ncu-config set upstream origin ncu-config set username "$GITHUB_ACTOR" ncu-config set token "$GH_TOKEN" ncu-config set repo "$(echo "$GITHUB_REPOSITORY" | cut -d/ -f2)" ncu-config set owner "${GITHUB_REPOSITORY_OWNER}" env: GH_TOKEN: ${{ github.token }} - name: Set up ghauth config (Ubuntu) run: | mkdir -p "${XDG_CONFIG_HOME:-~/.config}/changelog-maker" jq --null-input '{user: env.GITHUB_ACTOR, token: env.TOKEN}' > "${XDG_CONFIG_HOME:-~/.config}/changelog-maker/config.json" env: TOKEN: ${{ github.token }} - name: Setup git author run: | git config --local user.email "github-bot@iojs.org" git config --local user.name "Node.js GitHub Bot" - name: Start git node release prepare # The curl command is to make sure we run the version of the script corresponding to the current workflow. run: | curl -fsSL https://github.com/${GITHUB_REPOSITORY}/raw/${GITHUB_SHA}/tools/actions/create-release-proposal.sh |\ sh -s -- "${RELEASE_DATE}" "${RELEASE_LINE}" "${GITHUB_ACTOR}" env: GH_TOKEN: ${{ github.token }} # We want the bot to push the push the release commit so CI runs on it. BOT_TOKEN: ${{ secrets.GH_USER_TOKEN }}