eureka: config to hide weather #4331
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: Lint PR Title | |
| on: | |
| pull_request_target: | |
| types: [edited, opened, reopened, synchronize] | |
| jobs: | |
| main: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| # Force checkout the main repo (base branch) so that repo secrets | |
| # are not available to unexpected/malicious PR code. | |
| ref: main | |
| - uses: ./.github/actions/setup-js-env | |
| - name: Run Lint Script | |
| run: | | |
| node .github/scripts/lint-pr-title.cjs | |
| env: | |
| GH_TOKEN: ${{ secrets.BOT_TOKEN }} | |
| PR_NUMBER: ${{ github.event.number }} |