chore(deps): update marocchino/sticky-pull-request-comment action to v3.0.4 #1448
This file contains hidden or 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: Publish | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - alpha | |
| - beta | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - labeled | |
| branches: | |
| - main | |
| - alpha | |
| - beta | |
| permissions: | |
| id-token: write | |
| contents: read | |
| actions: read | |
| jobs: | |
| run-tests: | |
| name: Tests | |
| uses: ./.github/workflows/test.yaml | |
| publish: | |
| name: Build and Publish | |
| needs: | |
| - run-tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Remove preview consumption comment | |
| if: ${{ github.event_name == 'pull_request' && env.GITHUB_TOKEN != '' }} | |
| uses: marocchino/sticky-pull-request-comment@d4d6b0936434b21bc8345ad45a440c5f7d2c40ff # v3.0.3 | |
| with: | |
| header: pr_preview_consumption | |
| delete: true | |
| GITHUB_TOKEN: ${{ secrets.KONGPONENTS_BOT_PAT }} | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| token: ${{ secrets.KONGPONENTS_BOT_PAT }} | |
| - name: Setup PNPM with Dependencies | |
| uses: ./.github/actions/setup-pnpm-with-dependencies/ | |
| - name: Build | |
| run: pnpm build | |
| - name: Prepare git | |
| run: | | |
| git config user.email "konnectx-engineers+kongponents-bot@konghq.com" | |
| git config user.name "Kong UI Bot" | |
| - name: Publish package preview | |
| id: package-preview | |
| # Do not run for `alpha` or `beta` branches | |
| if: github.event_name == 'pull_request' && (github.actor != 'renovate[bot]' || contains(github.event.pull_request.labels.*.name, 'create preview package')) && !contains(github.head_ref || github.ref_name, 'alpha') && !contains(github.head_ref || github.ref_name, 'beta') | |
| run: | | |
| git config user.email "konnectx-engineers+kongponents-bot@konghq.com" | |
| git config user.name "Kong UI Bot" | |
| preid="pr.${{ github.event.pull_request.number }}.$(git rev-parse --short ${{ github.event.pull_request.head.sha }})" | |
| tag="pr-${{ github.event.pull_request.number }}" | |
| echo "preid=${preid}" | |
| pnpm version prerelease --preid ${preid} --no-git-tag-version --yes --amend | |
| package_version=$(jq -r ".version" package.json) | |
| package=@kong/design-tokens@"${package_version}" | |
| npm show "${package}" >/dev/null 2>&1 && npm_show_status=0 || npm_show_status=1 | |
| if [ $npm_show_status -eq 0 ]; then | |
| echo "Package ${package} is already published. Skipping publishing." | |
| exit 0 | |
| fi | |
| npm_instructions="" | |
| pkg=$(npm publish --no-git-checks --access public --report-summary --tag "${tag}" | grep "+ "| sed 's/+ //') | |
| if [[ -z "${pkg}" ]]; then | |
| echo "Error publishing package" | |
| exit -1 | |
| fi | |
| npm_instructions="@$(echo ${pkg}|cut -d'@' -f2)@${tag}" | |
| echo "npm_instructions<<EOF" >> $GITHUB_OUTPUT | |
| echo -e "$npm_instructions" >> $GITHUB_OUTPUT | |
| echo "EOF" >> $GITHUB_OUTPUT | |
| - name: Provide preview link info | |
| if: ${{ steps.package-preview.outputs.npm_instructions != '' }} | |
| uses: marocchino/sticky-pull-request-comment@d4d6b0936434b21bc8345ad45a440c5f7d2c40ff # v3.0.3 | |
| with: | |
| header: pr_preview_consumption | |
| message: | | |
| ### Install the preview package from this PR in your consuming application | |
| In your host project, you may install the preview package version generated by this PR: | |
| ```sh | |
| ${{ steps.package-preview.outputs.npm_instructions }} | |
| ``` | |
| GITHUB_TOKEN: ${{ secrets.KONGPONENTS_BOT_PAT }} | |
| - name: Semantic Release | |
| if: github.event_name == 'push' | |
| uses: cycjimmy/semantic-release-action@b12c8f6015dc215fe37bc154d4ad456dd3833c90 # v6.0.0 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.KONGPONENTS_BOT_PAT }} |