fix(inputs): add fallback to ENV for inputs JIRA_COMPONENT and JIRA_TASK #81
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: 🎓 DangerJS Pull Request linter | |
on: | |
pull_request_target: | |
types: [opened, edited, reopened, synchronize] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
pull-request-style-linter: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
contents: write | |
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-contributions-file: 'CONTRIBUTING.md' |