Bump codacy/codacy-analysis-cli-action from d28ce580f19309cd493628eba4641f745822082c to 30783d03e758713bb5ed7b79292cfb14b9dd9a4a #1505
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: Auto Content on Labels | |
| on: | |
| issues: | |
| types: [opened] | |
| pull_request: | |
| types: [opened] | |
| jobs: | |
| addContent: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check for Labels | |
| id: check_labels | |
| run: echo "::set-output name=labels::${{ toJson(github.event.issue.labels) }}" | |
| - name: Add Guidance Comment | |
| if: ${{ contains(steps.check_labels.outputs.labels, 'dsa-solution') }} | |
| uses: actions/github-script@v7 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| script: | | |
| const issueOrPR = github.context.payload.issue || github.context.payload.pull_request; | |
| const comment = ` | |
| Hello there! 🌟 It looks like you've added the \`dsa-solution\` label. | |
| Please refer to our guidance on Data Structures & Algorithms solutions here: [DSA Solution Guidance](https://github.com/orgs/CodeHarborHub/discussions/3369#discussion-6940372). | |
| Thank you! | |
| `; | |
| github.issues.createComment({ | |
| issue_number: issueOrPR.number, | |
| owner: github.context.repo.owner, | |
| repo: github.context.repo.repo, | |
| body: comment | |
| }); |