@@ -32,48 +32,48 @@ jobs:
3232 pull-requests : write
3333 steps :
3434 # Log the input from GitHub Actions for easy traceability
35- - name : Log GitHub Input
35+ - name : 🔏 Log GitHub Input
3636 run : |
3737 echo "Version: ${{ inputs.version }}"
3838 shell : bash
3939
40- - name : Checkout Code
41- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
40+ - name : 📥 Checkout Code
41+ uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4242 with :
4343 # A depth of 0 gets the entire git history, which we'll want for things like checking all git history/tags.
4444 # We need git history to generate the changelog; however, we don't know how deep to go.
4545 # Since publishing is a one-off activity, just get everything.
4646 fetch-depth : 0
4747 ref : ${{ inputs.base }}
4848
49- - name : Get Core Dependencies
49+ - name : 🕸️ Get Core Dependencies
5050 uses : ./.github/workflows/actions/get-core-dependencies
5151
5252 # TODO(STENCIL-927): Backport changes to the v3 branch
53- - name : Run Publish Preparation Script
53+ - name : 📦 Run Publish Preparation Script
5454 run : npm run release.ci.prepare -- --version ${{ inputs.version }}
5555 shell : bash
5656
57- - name : Log Generated Changes
57+ - name : 📝 Log Generated Changes
5858 run : git --no-pager diff
5959 shell : bash
6060
61- - name : Generate Version String and Branch Name
61+ - name : 🏷️ Generate Version String and Branch Name
6262 id : name_gen
6363 run : |
6464 VERSION_STR=$(jq '.version' package.json | sed s/\"//g)
6565 echo "VERSION_STR=$VERSION_STR" >> "$GITHUB_OUTPUT"
6666 echo "BRANCH_NAME=release/$VERSION_STR-run-${{ github.run_number }}-${{ github.run_attempt }}" >> "$GITHUB_OUTPUT"
6767 shell : bash
6868
69- - name : Print Version String and Branch Name
69+ - name : 🖨️ Print Version String and Branch Name
7070 run : |
7171 echo Version: ${{ steps.name_gen.outputs.VERSION_STR }}
7272 echo Branch Name: ${{ steps.name_gen.outputs.BRANCH_NAME }}
7373 shell : bash
7474
75- - name : Create the Pull Request
76- uses : peter-evans/create-pull-request@6d6857d36972b65feb161a90e484f2984215f83e # v6 .0.5
75+ - name : 📤 Create the Pull Request
76+ uses : peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7 .0.8
7777 with :
7878 # create a new pull request using the specified base branch
7979 base : ${{ inputs.base }}
0 commit comments