feat: improve notify_issue to be able to choose when the comment is created #16
Workflow file for this run
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: Lint Github Actions | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - ".github/**" | |
| pull_request: | |
| paths: | |
| - ".github/**" | |
| jobs: | |
| lint: | |
| name: Lint YAML files | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ibiqlik/action-yamllint@v3 | |
| with: | |
| file_or_dir: .github | |
| config_data: | | |
| extends: default | |
| rules: | |
| line-length: | |
| max: 120 | |
| level: warning | |
| document-start: disable | |
| truthy: disable |