release-edited #3
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
| # Copyright 2026 EPAM Systems | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software | |
| # distributed under the License is distributed on an "AS IS" BASIS, | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| # See the License for the specific language governing permissions and | |
| # limitations under the License. | |
| name: Update Release Page | |
| on: | |
| repository_dispatch: | |
| types: [release-edited] | |
| jobs: | |
| update-release: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: master | |
| token: ${{ secrets.GH_TOKEN }} | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Update release page | |
| run: node scripts/update-release.js | |
| env: | |
| GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
| RELEASE_NAME: ${{ github.event.client_payload.release_name }} | |
| RELEASE_TAG: ${{ github.event.client_payload.release_tag }} | |
| - name: Check for changes | |
| id: changes | |
| run: | | |
| if [ -n "$(git status docs/releases/ --porcelain)" ]; then | |
| echo "has_changes=true" >> "$GITHUB_OUTPUT" | |
| else | |
| echo "has_changes=false" >> "$GITHUB_OUTPUT" | |
| echo "No changes to release page." | |
| fi | |
| - name: Commit and push updated release page | |
| if: steps.changes.outputs.has_changes == 'true' | |
| env: | |
| RELEASE_TAG: ${{ github.event.client_payload.release_tag }} | |
| run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| git add docs/releases/ | |
| git commit -m "docs: update release page for $RELEASE_TAG" | |
| git push |