Create Release Proposal #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This action requires the following secrets to be set on the repository: | |
# GH_USER_NAME: GitHub user whose Jenkins and GitHub token are defined below | |
# 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 | |
default: 23 | |
description: 'The release line (without dots or prefix). e.g: 22' | |
release-date: | |
required: true | |
type: string | |
default: YYYY-MM-DD | |
description: The release date in YYYY-MM-DD format | |
concurrency: ${{ github.workflow }} | |
env: | |
NODE_VERSION: lts/* | |
permissions: | |
contents: read | |
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-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
ref: ${{ env.STAGING_BRANCH }} | |
# Install dependencies | |
- name: Install Node.js | |
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3 | |
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 "$USERNAME" | |
ncu-config set token "$GH_TOKEN" | |
ncu-config set repo "$(echo "$GITHUB_REPOSITORY" | cut -d/ -f2)" | |
ncu-config set owner "${GITHUB_REPOSITORY_OWNER}" | |
env: | |
USERNAME: ${{ secrets.JENKINS_USER }} | |
GH_TOKEN: ${{ github.token }} | |
- name: Set up ghauth config (Ubuntu) | |
run: | | |
mkdir -p "${XDG_CONFIG_HOME:-~/.config}/changelog-maker" | |
echo '{}' | jq '{user: env.USERNAME, token: env.TOKEN}' > "${XDG_CONFIG_HOME:-~/.config}/changelog-maker/config.json" | |
env: | |
USERNAME: ${{ secrets.JENKINS_USER }} | |
TOKEN: ${{ github.token }} | |
- name: Setup git author | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "Node.js GitHub Bot" | |
# Workaround, see https://github.com/nodejs/node-core-utils/pull/876 | |
git fetch origin --shallow-exclude v23.3.0 v23.x-staging | |
git fetch origin --deepen=1 v23.x-staging | |
- 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 -L https://github.com/${GITHUB_REPOSITORY}/raw/${GITHUB_SHA}/tools/actions/create-release.sh > tools/actions/create-release.sh | |
./tools/actions/create-release.sh "${RELEASE_DATE}" "${RELEASE_LINE}" | |
env: | |
GH_TOKEN: ${{ secrets.GH_USER_TOKEN }} | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: query.gql | |
path: query.gql |