Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/status-page.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,13 @@ jobs:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- name: Add progress comment to cherry-pick issue for Stable and LTS
if: github.event_name == 'issues' && github.event.action == 'opened'
run: |
npm ci
node ./build-system/status-page/comment.js ${{ github.event.issue.number }} ${{ github.actor }}
env:
GH_ACTOR: ${{ github.actor }}
BODY: ${{ github.event.issue.body }}
GITHUB_TOKEN: ${{ secrets.AMPPROJECTBOT }}
run: |
npm ci
node ./build-system/status-page/comment.js ${{ github.event.issue.number }} $GH_ACTOR
- name: Sync status page with cherry-pick progress
if: github.event_name == 'issue_comment' && github.event.action == 'edited' && contains(github.event.comment.body, '🌸 Cherry-pick Progress 🌸')
run: |
Expand Down
Loading