Merge pull request #394 from dallay/feat/status-readable-output #1740
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: Contributor Report | ||
| on: | ||
| pull_request: | ||
| types: [opened, reopened, synchronize, edited] | ||
| # Skip bot-authored PRs (e.g., release-please) since contributor-report | ||
| # cannot resolve GitHub App bot users like "dallay-bot[bot]". | ||
| if: ${{ github.event.pull_request.user.type != 'Bot' }} | ||
| permissions: | ||
| contents: read | ||
| pull-requests: write | ||
| env: | ||
| # Force JavaScript actions to use Node.js 24 (Node.js 20 is deprecated) | ||
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | ||
| jobs: | ||
| report: | ||
| uses: dallay/common-actions/.github/workflows/contributor-report.yml@v2 | ||
| secrets: inherit | ||