Add COBOL agent skill and prompt to update spec at end #3
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: Create Issues for Specification Changes | |
| on: | |
| push: | |
| branches: [main, modernize-legacy-code] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| issues: write | |
| jobs: | |
| spec-change-issues: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 2 # Need history for diff | |
| - uses: spec-ops-method/spec-ops-action@v1 | |
| with: | |
| file-pattern: 'docs/SPECIFICATION.md' | |
| labels: 'spec-change,needs-review' | |
| issue-title-template: '[SPEC] {{ filename }} updated' | |
| include-diff: true | |
| include-file-link: true | |
| include-commit-link: true |