Bump codacy/codacy-analysis-cli-action from 09916000460adeeedc96b9704f86deba53e2ad5d to d28ce580f19309cd493628eba4641f745822082c #1407
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 | |
| }); |