feat(cloudwatch-appsignals-mcp-server): Add get_enablement_guide MCP … #2137
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
| # This workflow runs an automated pull request code review when labeled | |
| name: Check License Header | |
| on: | |
| push: | |
| permissions: {} | |
| jobs: | |
| precheck: | |
| name: Code Review Upon All Successful Runs | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Check license headers | |
| uses: viperproject/check-license-header@e06c65614fa9f32e099838df4dd25440c5344b32 # v2.0.3 | |
| with: | |
| path: . | |
| config: ./.github/workflows/check-license-header.json | |
| strict: true |