kopia lustrzana https://github.com/espressif/esp-idf
28 wiersze
713 B
YAML
28 wiersze
713 B
YAML
name: DangerJS Pull Request review
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [opened, edited, reopened, synchronize]
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
contents: write
|
|
|
|
jobs:
|
|
pull-request-style-linter:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out PR head
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
|
|
- name: DangerJS pull request linter
|
|
uses: espressif/shared-github-dangerjs@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
instructions-gitlab-mirror: 'true'
|
|
instructions-contributions-file: 'CONTRIBUTING.md'
|
|
instructions-cla-link: 'https://cla-assistant.io/espressif/esp-idf'
|