Skip to content

JSer.info 15周年 #1190

JSer.info 15周年

JSer.info 15周年 #1190

Workflow file for this run

name: update-draft-pr
on:
pull_request:
types: [opened, edited, synchronize]
permissions:
contents: write
pull-requests: write
jobs:
update-draft-pr:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request' && (github.event.pull_request.author_association == 'MEMBER' || github.event.pull_request.author_association == 'OWNER' || github.event.pull_request.author_association == 'COLLABORATOR')
steps:
- name: Checkout
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
with:
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1
with:
node-version: 18
- name: Install
run: yarn install
working-directory: actions/update-draft-pr
- name: Run
run: yarn start
working-directory: actions/update-draft-pr
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PULL_REQUEST_EVENT: ${{ toJson(github.event) }}