chore(deps): update actions/checkout action to v4 j:kit-282 #3
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
name: Update PR for Lit Component Migration | |
on: | |
pull_request: | |
types: [labeled] | |
jobs: | |
update-pr-description: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Get Label | |
id: get_label | |
run: echo "label=${{ github.event.label.name }}" >> $GITHUB_OUTPUT | |
- name: Read PR Template | |
if: steps.get_label.outputs.label == 'new-lit-component' | |
id: read_template | |
run: | | |
TEMPLATE_CONTENT=$(cat .github/PULL_REQUEST_TEMPLATE/atomic-stencil-lit-migration.md) | |
TEMPLATE_CONTENT_ESCAPED=$(echo "$TEMPLATE_CONTENT" | jq -Rs .) | |
echo "template_content=$TEMPLATE_CONTENT_ESCAPED" >> $GITHUB_OUTPUT | |
- name: Replace Placeholders in PR Template | |
if: steps.get_label.outputs.label == 'new-lit-component' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PR_NUMBER: ${{ github.event.pull_request.number }} | |
TEMPLATE_CONTENT: ${{ steps.read_template.outputs.template_content }} | |
run: | | |
# Update PR description via GitHub API | |
echo "Updating PR description for PR #$PR_NUMBER" | |
curl -X PATCH -H "Authorization: token $GITHUB_TOKEN" \ | |
-H "Accept: application/vnd.github.v3+json" \ | |
https://api.github.com/repos/${{ github.repository }}/pulls/$PR_NUMBER \ | |
-d "{\"body\": $TEMPLATE_CONTENT}" |