Lazy configuration of inputs using inputs of another task creates unwanted task dependency #3989
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 issues metadata | |
on: | |
issues: | |
types: [ opened, unlabeled, closed ] | |
permissions: {} | |
jobs: | |
check_issue_metadata: | |
permissions: | |
issues: write | |
runs-on: ubuntu-latest | |
steps: | |
# Check that issues have proper metadata: labels and milestone | |
# https://github.com/gradle/issue-management-action/blob/main/src/issue-metadata.ts | |
- uses: gradle/issue-management-action/issue-metadata@v2 |