Skip to content

Force to update readme and meta.json if action is called manually #49

Force to update readme and meta.json if action is called manually

Force to update readme and meta.json if action is called manually #49

Workflow file for this run

name: Check PR
on:
pull_request:
paths-ignore:
- '!.github/**'
types:
- opened
- synchronize
- reopened
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Install Dependencies
run: npm install
working-directory: ./tools
- name: Check PR
id: run-check-pr
run: |
npm run check-pr
echo ${{ github.event.number }} > ../pr_number
working-directory: ./tools
- uses: actions/upload-artifact@v4
with:
name: changes
path: |
check_pr_output
pr_number