Force to update readme and meta.json if action is called manually #49
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: 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 |