Skip to content

Bump marocchino/sticky-pull-request-comment from 2.9.0 to 2.9.1 #1870

Bump marocchino/sticky-pull-request-comment from 2.9.0 to 2.9.1

Bump marocchino/sticky-pull-request-comment from 2.9.0 to 2.9.1 #1870

on:
pull_request_target:
types: [opened, synchronize]
name: Review
jobs:
reviewProjectChanges:
name: Project Changes
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout base branch
uses: actions/checkout@v4
with:
ref: gh-pages
- name: Setup Ruby
uses: ruby/setup-ruby@4a9ddd6f338a97768b8006bf671dfbad383215f4
with:
bundler-cache: true
- name: Run script to review changed projects
id: run_script
run: |
MESSAGE=$(bundle exec ruby scripts/review_changes.rb --skip-exit-code)
echo "message: '$MESSAGE'"
echo 'message<<EOF' >> "$GITHUB_OUTPUT"
echo "$MESSAGE" >> "$GITHUB_OUTPUT"
echo 'EOF' >> "$GITHUB_OUTPUT"
env:
BASE_SHA: ${{ github.event.pull_request.base.sha }}
HEAD_SHA: ${{ github.event.pull_request.head.sha }}
GIT_REMOTE_URL: ${{ github.event.pull_request.head.repo.clone_url }}
GITHUB_TOKEN: ${{ secrets.SHIFTBOT_TOKEN }}
- uses: marocchino/sticky-pull-request-comment@52423e01640425a022ef5fd42c6fb5f633a02728
with:
message: ${{ steps.run_script.outputs.message }}
GITHUB_TOKEN: ${{ secrets.SHIFTBOT_TOKEN }}