This repository has been archived by the owner on Sep 30, 2024. It is now read-only.
Update README.md #615
Workflow file for this run
This file contains 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: comment-on-pull-request | |
on: | |
pull_request_target: | |
types: [opened] | |
permissions: | |
pull-requests: write | |
issues: write | |
jobs: | |
comment-on-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Comment on PR | |
uses: thollander/actions-comment-pull-request@v2 | |
with: | |
message: "This repository is for **practice only** and therefore it will not count towards hacktoberfest." | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
mode: upsert | |
create_if_not_exists: true |