i18n: Raidboss general output&4.x content CN output overhaul #1224
Workflow file for this run
This file contains 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@v3 | |
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 }} |