Add deyeidc to latest #7612
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 changed adapters | |
# | |
# WARNING: | |
# ** Do NOT run untrusted code when using pull_request_target ** | |
# pull_request_target is needed as pull_request does not provide secrets and so no | |
# commenting of PR is possible. | |
# | |
on: | |
pull_request_target: | |
types: [opened, edited, ready_for_review, reopened] | |
issue_comment: | |
types: [created] | |
# concurrent runs are required if more then one PR get commented with RE-CHECK! at same time | |
# concurrency: | |
# group: check-${{ github.head_ref }} | |
# cancel-in-progress: true | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- run: npm i | |
- run: npm run check | |
env: | |
OWN_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_REF: ${{ env.GITHUB_REF }} | |
GITHUB_EVENT_PATH: ${{ env.GITHUB_EVENT_PATH }} |