tools: update nixpkgs-unstable to 335f0738cb2fa9708f3f428e39d2eae975d #39040
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: Notify on Review Wanted | |
| on: | |
| issues: | |
| types: [labeled] | |
| pull_request_target: | |
| types: [labeled] | |
| permissions: | |
| contents: read | |
| jobs: | |
| notifyOnReviewWanted: | |
| name: Notify on Review Wanted | |
| if: github.repository == 'nodejs/node' && github.event.label.name == 'review wanted' | |
| # cannot use ubuntu-slim here because rtCamp/action-slack-notify is dockerized | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| - name: Determine PR or Issue | |
| id: define-message | |
| env: | |
| TITLE_ISSUE: ${{ github.event.issue.title }} | |
| TITLE_PR: ${{ github.event.pull_request.title }} | |
| run: | | |
| if [[ -n "${{ github.event.pull_request.number }}" ]]; then | |
| number="${{ github.event.pull_request.number }}" | |
| link="https://github.com/${{ github.repository }}/pull/$number" | |
| echo "message=The PR (#$number) requires review from Node.js maintainers. See: $link" >> "$GITHUB_OUTPUT" | |
| echo "title=$TITLE_PR" >> "$GITHUB_OUTPUT" | |
| else | |
| number="${{ github.event.issue.number }}" | |
| link="https://github.com/${{ github.repository }}/issues/$number" | |
| echo "message=The issue (#$number) requires review from Node.js maintainers. See: $link" >> "$GITHUB_OUTPUT" | |
| echo "title=$TITLE_ISSUE" >> "$GITHUB_OUTPUT" | |
| fi | |
| - name: Slack Notification | |
| uses: rtCamp/action-slack-notify@33ca3be66c6f378fe1610fd1d5258632dbed5e58 # 2.4.0 | |
| env: | |
| MSG_MINIMAL: actions url | |
| SLACK_COLOR: '#3d85c6' | |
| SLACK_ICON: https://github.com/nodejs.png?size=48 | |
| SLACK_TITLE: ${{ steps.define-message.outputs.title }} | |
| SLACK_MESSAGE: ${{ steps.define-message.outputs.message }} | |
| SLACK_USERNAME: nodejs-bot | |
| SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} |