Async import of the appStore packages #1
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: "Apply issue labels to PR" | |
| on: | |
| pull_request: | |
| types: [opened] | |
| jobs: | |
| label_on_pr: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: 16 | |
| - name: Apply labels from linked issue to PR | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| PR_DATA: ${{ toJson(github.event.pull_request) }} | |
| run: node ./.github/workflows/scripts/apply-issue-labels-to-pr.ts |